Commit 92b21a95 authored by Bob Moore's avatar Bob Moore Committed by Rafael J. Wysocki

ACPICA: Update info messages during ACPICA init

ACPICA commit 4ccf8a1cc499ec8f00345f662a5887483980e1dd

Small cleanup of messages.

Link: https://github.com/acpica/acpica/commit/4ccf8a1cSigned-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarLv Zheng <lv.zheng@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 2aabfad7
...@@ -237,6 +237,15 @@ acpi_ds_initialize_objects(u32 table_index, ...@@ -237,6 +237,15 @@ acpi_ds_initialize_objects(u32 table_index,
return_ACPI_STATUS(status); 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, ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
"Table [%4.4s] (id %4.4X) - %4u Objects with %3u Devices, " "Table [%4.4s] (id %4.4X) - %4u Objects with %3u Devices, "
"%3u Regions, %3u Methods (%u/%u/%u Serial/Non/Cvt)\n", "%3u Regions, %3u Methods (%u/%u/%u Serial/Non/Cvt)\n",
......
...@@ -208,11 +208,11 @@ static acpi_status acpi_tb_load_namespace(void) ...@@ -208,11 +208,11 @@ static acpi_status acpi_tb_load_namespace(void)
if (!tables_failed) { if (!tables_failed) {
ACPI_INFO((AE_INFO, ACPI_INFO((AE_INFO,
"All (%u) ACPI AML tables successfully loaded", "%u ACPI AML tables successfully acquired and loaded",
tables_loaded)); tables_loaded));
} else { } else {
ACPI_ERROR((AE_INFO, ACPI_ERROR((AE_INFO,
"%u ACPI AML tables loaded, %u failed", "%u ACPI AML tables successfully acquired and loaded, %u failed",
tables_loaded, tables_failed)); tables_loaded, tables_failed));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment