diff options
Diffstat (limited to 'source/components/dispatcher/dsinit.c')
| -rw-r--r-- | source/components/dispatcher/dsinit.c | 15 | 
1 files changed, 12 insertions, 3 deletions
| diff --git a/source/components/dispatcher/dsinit.c b/source/components/dispatcher/dsinit.c index aabd30b29448..b3a9bdcf45d7 100644 --- a/source/components/dispatcher/dsinit.c +++ b/source/components/dispatcher/dsinit.c @@ -255,10 +255,19 @@ AcpiDsInitializeObjects (          return_ACPI_STATUS (Status);      } +    /* DSDT is always the first AML table */ + +    if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_DSDT)) +    { +        ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, "\nInitializing Namespace objects:\n")); +    } + +    /* Summary of objects initialized */ +      ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, -        "Table [%4.4s] (id %4.4X) - %4u Objects with %3u Devices, " -        "%3u Regions, %3u Methods (%u/%u/%u Serial/Non/Cvt)\n", -        Table->Signature, OwnerId, Info.ObjectCount, Info.DeviceCount, +        "Table [%4.4s:%8.8s] (id %.2X) - %4u Objects with %3u Devices, " +        "%3u Regions, %4u Methods (%u/%u/%u Serial/Non/Cvt)\n", +        Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount, Info.DeviceCount,          Info.OpRegionCount, Info.MethodCount, Info.SerialMethodCount,          Info.NonSerialMethodCount, Info.SerializedMethodCount)); | 
