Skip to content

Commit

Permalink
executer/exsystem: Fix some typo mistakes
Browse files Browse the repository at this point in the history
Signed-off-by: Selvarasu Ganesan <selvarasu.ganesan@arm.com>
  • Loading branch information
selgan01 committed Mar 28, 2022
1 parent 5509c97 commit 441747f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/components/executer/exsystem.c
Expand Up @@ -302,7 +302,7 @@ AcpiExSystemDoStall (
}
else
{
if (HowLongUS > 100)
if (HowLongUs > 100)
{
ACPI_WARNING ((AE_INFO,
"Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.", HowLongUs));
Expand Down Expand Up @@ -345,7 +345,7 @@ AcpiExSystemDoSleep (
if (HowLongMs > 10)
{
ACPI_WARNING ((AE_INFO,
"Firmware issue: Excessive sleep time (%llu ms > 10 ms) in ACPI Control Method", HowLongUs));
"Firmware issue: Excessive sleep time (%lu ms > 10 ms) in ACPI Control Method", HowLongMs));
}

/*
Expand Down

0 comments on commit 441747f

Please sign in to comment.