projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6a389f
)
acpica: ACPI_MAX_SLEEP should be 2 sec, not 20
author
Len Brown
<len.brown@intel.com>
Tue, 30 Aug 2011 03:01:58 +0000
(23:01 -0400)
committer
Len Brown
<len.brown@intel.com>
Tue, 30 Aug 2011 03:08:20 +0000
(23:08 -0400)
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
drivers/acpi/acpica/acconfig.h
patch
|
blob
|
blame
|
history
diff --git
a/drivers/acpi/acpica/acconfig.h
b/drivers/acpi/acpica/acconfig.h
index bc533dde16c47785d2c0321a173039eeede4e69b..f895a244ca7ea187588356475e6ca4d700804b52 100644
(file)
--- a/
drivers/acpi/acpica/acconfig.h
+++ b/
drivers/acpi/acpica/acconfig.h
@@
-121,7
+121,7
@@
/* Maximum sleep allowed via Sleep() operator */
-#define ACPI_MAX_SLEEP 2000
0
/* Two seconds */
+#define ACPI_MAX_SLEEP 2000
/* Two seconds */
/******************************************************************************
*