diff options
Diffstat (limited to 'source/compiler/aslload.c')
-rw-r--r-- | source/compiler/aslload.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/compiler/aslload.c b/source/compiler/aslload.c index 4082b388dcddc..a57ba5e09bfdd 100644 --- a/source/compiler/aslload.c +++ b/source/compiler/aslload.c @@ -233,7 +233,11 @@ LdLoadNamespace ( /* Dump the namespace if debug is enabled */ - AcpiNsDumpTables (ACPI_NS_ALL, ACPI_UINT32_MAX); + if (AcpiDbgLevel & ACPI_LV_TABLES) + { + AcpiNsDumpTables (ACPI_NS_ALL, ACPI_UINT32_MAX); + } + ACPI_FREE (WalkState); return (AE_OK); } |