Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

acpica: ACPI_MAX_SLEEP should be 2 sec, not 20

This limit is a workaround for AML that sleeps too long,
but the workaround didn't work b/c of a typo.

https://bugzilla.kernel.org/show_bug.cgi?id=13195

Signed-off-by: Len Brown <len.brown@intel.com>
cc: stable@kernel.org # 2.6.35..3.0

Len Brown b33c25d6 c6a389f1

+1 -1
+1 -1
drivers/acpi/acpica/acconfig.h
··· 121 121 122 122 /* Maximum sleep allowed via Sleep() operator */ 123 123 124 - #define ACPI_MAX_SLEEP 20000 /* Two seconds */ 124 + #define ACPI_MAX_SLEEP 2000 /* Two seconds */ 125 125 126 126 /****************************************************************************** 127 127 *