50 ms is quite long for todays systems and requirements. 10 ms seems
like a more appropriate limit, and everything else needing more should
be rewritten to use polling.
Signed-off-by: Paul Menzel <[email protected]>
---
drivers/acpi/acpica/exsystem.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/acpi/acpica/exsystem.c b/drivers/acpi/acpica/exsystem.c
index bdffb8aac05c..676459ccc8d7 100644
--- a/drivers/acpi/acpica/exsystem.c
+++ b/drivers/acpi/acpica/exsystem.c
@@ -167,9 +167,9 @@ acpi_status acpi_ex_system_do_sleep(u64 how_long_ms)
acpi_ex_exit_interpreter();
- if (how_long_ms > 50) {
+ if (how_long_ms > 10) {
ACPI_WARNING((AE_INFO,
- "Time parameter %llu > 50 ms. Please contact firmware vendor for more responsive system.", how_long_ms));
+ "Time parameter %llu > 10 ms. Please contact firmware vendor for more responsive system.", how_long_ms));
}
/*
--
2.35.1