From 3d6c6552f1c1b174e1bc27102f55942ec94f144d Mon Sep 17 00:00:00 2001 From: Selvarasu Ganesan Date: Mon, 11 Apr 2022 21:01:36 +0200 Subject: ACPICA: executer/exsystem: Fix some typo mistakes ACPICA commit 441747f1dcff770d692acbfd4d85b2cfaabdb38a Link: https://github.com/acpica/acpica/commit/441747f1 Signed-off-by: Selvarasu Ganesan Signed-off-by: Bob Moore Signed-off-by: Rafael J. Wysocki --- drivers/acpi/acpica/exsystem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'drivers/acpi/acpica') diff --git a/drivers/acpi/acpica/exsystem.c b/drivers/acpi/acpica/exsystem.c index b9b98a7cad4d..6095ac83f6f6 100644 --- a/drivers/acpi/acpica/exsystem.c +++ b/drivers/acpi/acpica/exsystem.c @@ -137,7 +137,7 @@ acpi_status acpi_ex_system_do_stall(u32 how_long_us) "Time parameter is too large (%u)", how_long_us)); status = AE_AML_OPERAND_VALUE; } else { - if (how_long_US > 100) { + if (how_long_us > 100) { ACPI_WARNING((AE_INFO, "Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.", how_long_us)); @@ -175,8 +175,8 @@ acpi_status acpi_ex_system_do_sleep(u64 how_long_ms) */ if (how_long_ms > 10) { ACPI_WARNING((AE_INFO, - "Firmware issue: Excessive sleep time (%llu ms > 10 ms) in ACPI Control Method", - how_long_us)); + "Firmware issue: Excessive sleep time (%lu ms > 10 ms) in ACPI Control Method", + how_long_ms)); } /* -- cgit v1.2.3