Skip to content

Commit 3d6c655

Browse files
selgan01rafaeljw
authored andcommitted
ACPICA: executer/exsystem: Fix some typo mistakes
ACPICA commit 441747f1dcff770d692acbfd4d85b2cfaabdb38a Link: acpica/acpica@441747f1 Signed-off-by: Selvarasu Ganesan <selvarasu.ganesan@arm.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent da6a9bb commit 3d6c655

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/acpi/acpica/exsystem.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ acpi_status acpi_ex_system_do_stall(u32 how_long_us)
137137
"Time parameter is too large (%u)", how_long_us));
138138
status = AE_AML_OPERAND_VALUE;
139139
} else {
140-
if (how_long_US > 100) {
140+
if (how_long_us > 100) {
141141
ACPI_WARNING((AE_INFO,
142142
"Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.",
143143
how_long_us));
@@ -175,8 +175,8 @@ acpi_status acpi_ex_system_do_sleep(u64 how_long_ms)
175175
*/
176176
if (how_long_ms > 10) {
177177
ACPI_WARNING((AE_INFO,
178-
"Firmware issue: Excessive sleep time (%llu ms > 10 ms) in ACPI Control Method",
179-
how_long_us));
178+
"Firmware issue: Excessive sleep time (%lu ms > 10 ms) in ACPI Control Method",
179+
how_long_ms));
180180
}
181181

182182
/*

0 commit comments

Comments
 (0)