mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
ACPICA: executer/exsystem: Don't nag user about every Stall() violating the spec
ACPICA commit 129b75516fc49fe1fd6b8c5798f86c13854630b3
Stop nagging user about every Stall() that violates the spec
On my Dell XPS 15 7590 I get hundreds of these warnings after few hours of
uptime:
$ dmesg | grep "fix the firmware" | wc -l
261
I cannot fix the firmware and I doubt that Dell cares about 4 year old
laptop either
Fixes: ace8f1c54a ("ACPICA: executer/exsystem: Inform users about ACPI spec violation")
Link: https://github.com/acpica/acpica/commit/129b7551
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
632b746b10
commit
c82c507126
@@ -133,12 +133,13 @@ acpi_status acpi_ex_system_do_stall(u32 how_long_us)
|
|||||||
* (ACPI specifies 100 usec as max, but this gives some slack in
|
* (ACPI specifies 100 usec as max, but this gives some slack in
|
||||||
* order to support existing BIOSs)
|
* order to support existing BIOSs)
|
||||||
*/
|
*/
|
||||||
ACPI_ERROR((AE_INFO,
|
ACPI_ERROR_ONCE((AE_INFO,
|
||||||
"Time parameter is too large (%u)", how_long_us));
|
"Time parameter is too large (%u)",
|
||||||
|
how_long_us));
|
||||||
status = AE_AML_OPERAND_VALUE;
|
status = AE_AML_OPERAND_VALUE;
|
||||||
} else {
|
} else {
|
||||||
if (how_long_us > 100) {
|
if (how_long_us > 100) {
|
||||||
ACPI_WARNING((AE_INFO,
|
ACPI_WARNING_ONCE((AE_INFO,
|
||||||
"Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.",
|
"Time parameter %u us > 100 us violating ACPI spec, please fix the firmware.",
|
||||||
how_long_us));
|
how_long_us));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user