aboutsummaryrefslogtreecommitdiff
path: root/source/components/executer/exsystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/components/executer/exsystem.c')
-rw-r--r--source/components/executer/exsystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/components/executer/exsystem.c b/source/components/executer/exsystem.c
index 16fb5ea16316..bc134172b0fb 100644
--- a/source/components/executer/exsystem.c
+++ b/source/components/executer/exsystem.c
@@ -296,7 +296,7 @@ AcpiExSystemDoStall (
* (ACPI specifies 100 usec as max, but this gives some slack in
* order to support existing BIOSs)
*/
- ACPI_ERROR ((AE_INFO,
+ ACPI_ERROR_ONCE ((AE_INFO,
"Time parameter is too large (%u)", HowLongUs));
Status = AE_AML_OPERAND_VALUE;
}
@@ -304,7 +304,7 @@ AcpiExSystemDoStall (
{
if (HowLongUs > 100)
{
- ACPI_WARNING ((AE_INFO,
+ ACPI_WARNING_ONCE ((AE_INFO,
"Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.", HowLongUs));
}
AcpiOsStall (HowLongUs);