Skip to content

Commit

Permalink
acpica: ACPI_MAX_SLEEP should be 2 sec, not 20
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Len Brown committed Aug 30, 2011
1 parent c6a389f commit b33c25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/acpica/acconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

/* Maximum sleep allowed via Sleep() operator */

#define ACPI_MAX_SLEEP 20000 /* Two seconds */
#define ACPI_MAX_SLEEP 2000 /* Two seconds */

/******************************************************************************
*
Expand Down

0 comments on commit b33c25d

Please sign in to comment.