From: Paul Menzel Date: Sun, 14 Jul 2019 12:18:50 +0200 Explicitly log, when the DSDT has been loaded. The timestamp will also help analyzing and optimizing the boot speed. [ 0.142248] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.168794] ACPI: DSDT successfully acquired and loaded [ 0.203925] ACPI: 9 ACPI AML tables successfully acquired and loaded Signed-off-by: Paul Menzel --- v2: Remove unused argument from print function. drivers/acpi/acpica/tbxfload.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/acpi/acpica/tbxfload.c b/drivers/acpi/acpica/tbxfload.c index bcba993d4dac..e49ebcf25493 100644 --- a/drivers/acpi/acpica/tbxfload.c +++ b/drivers/acpi/acpica/tbxfload.c @@ -162,6 +162,7 @@ acpi_status acpi_tb_load_namespace(void) tables_failed++; } else { tables_loaded++; + ACPI_INFO(("DSDT successfully acquired and loaded\n")); } /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */ -- 2.25.0