]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ACPICA: Update info messages during ACPICA init
authorBob Moore <robert.moore@intel.com>
Tue, 25 Aug 2015 02:28:54 +0000 (10:28 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 25 Aug 2015 21:11:31 +0000 (23:11 +0200)
ACPICA commit 4ccf8a1cc499ec8f00345f662a5887483980e1dd

Small cleanup of messages.

Link: https://github.com/acpica/acpica/commit/4ccf8a1c
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/acpica/dsinit.c
drivers/acpi/acpica/tbxfload.c

index 95779e8ec3bb2ab16eb69b8d14a729812aef8df4..bbf52f0dc046c5d637b704640697458c9fff8852 100644 (file)
@@ -237,6 +237,15 @@ acpi_ds_initialize_objects(u32 table_index,
                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",
index 7862cf04a1640d8ee65d8cf1227e7458d6794d9d..6cbb2f7a35e85e144af036ccd319b91bbff452f2 100644 (file)
@@ -208,11 +208,11 @@ static acpi_status acpi_tb_load_namespace(void)
 
        if (!tables_failed) {
                ACPI_INFO((AE_INFO,
-                          "All (%u) ACPI AML tables successfully loaded",
+                          "%u ACPI AML tables successfully acquired and loaded",
                           tables_loaded));
        } else {
                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));
        }