only print the dot-per-method thing if debugging ACPI_LV_LOAD, too
ACPI_LV_LOAD was chosen quite arbitrarily; perhaps the dot printing should be removed altogether
This commit is contained in:
parent
b892fa21e2
commit
855a497919
|
@ -1,7 +1,7 @@
|
|||
/******************************************************************************
|
||||
*
|
||||
* Module Name: dsinit - Object initialization namespace walk
|
||||
* $Revision: 1.1.1.1 $
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
|
@ -200,7 +200,8 @@ AcpiDsInitOneObject (
|
|||
|
||||
/* Print a dot for each method unless we are going to print the entire pathname */
|
||||
|
||||
if (!(AcpiDbgLevel & ACPI_LV_INIT_NAMES))
|
||||
if (!(AcpiDbgLevel & ACPI_LV_INIT_NAMES)
|
||||
&& (AcpiDbgLevel & ACPI_LV_LOAD))
|
||||
{
|
||||
AcpiOsPrintf (".");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue