acpica: ACPI_MAX_SLEEP should be 2 sec, not 20
authorLen Brown <len.brown@intel.com>
Tue, 30 Aug 2011 03:01:58 +0000 (23:01 -0400)
committerLen 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

index bc533dde16c47785d2c0321a173039eeede4e69b..f895a244ca7ea187588356475e6ca4d700804b52 100644 (file)
 
 /* Maximum sleep allowed via Sleep() operator */
 
-#define ACPI_MAX_SLEEP                  20000  /* Two seconds */
+#define ACPI_MAX_SLEEP                  2000   /* Two seconds */
 
 /******************************************************************************
  *