diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2003-01-06 09:30:31 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2003-01-06 09:30:31 +0000 |
| commit | 855a497919d3e4290e4fbc68c11b328bf6fb7611 (patch) | |
| tree | d451203616d4c05c123c8c60232c152e04942d8b /sys/dev | |
| parent | b892fa21e21d81d757700473dc35d67af6ea18cd (diff) | |
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
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpi/acpica/Subsystem/dsinit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpica/Subsystem/dsinit.c b/sys/dev/acpi/acpica/Subsystem/dsinit.c index 026c3ab9b7b..e2aec415a13 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsinit.c +++ b/sys/dev/acpi/acpica/Subsystem/dsinit.c @@ -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 ("."); } |
