diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-05 14:16:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-05 14:16:25 -0400 |
commit | 32fb6c17566ec66de87324a834c7776f40e35e78 (patch) | |
tree | 87b8ed5d66495536fbb452255c3eacd1cfb0c43a /drivers/acpi/osl.c | |
parent | 45e36c1666aa6c8b0c538abcf984b336184d8c3f (diff) | |
parent | 7ec0a7290797f57b780f792d12f4bcc19c83aa4f (diff) |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6: (140 commits)
ACPI: processor: use .notify method instead of installing handler directly
ACPI: button: use .notify method instead of installing handler directly
ACPI: support acpi_device_ops .notify methods
toshiba-acpi: remove MAINTAINERS entry
ACPI: battery: asynchronous init
acer-wmi: Update copyright notice & documentation
acer-wmi: Cleanup the failure cleanup handling
acer-wmi: Blacklist Acer Aspire One
video: build fix
thinkpad-acpi: rework brightness support
thinkpad-acpi: enhanced debugging messages for the fan subdriver
thinkpad-acpi: enhanced debugging messages for the hotkey subdriver
thinkpad-acpi: enhanced debugging messages for rfkill subdrivers
thinkpad-acpi: restrict access to some firmware LEDs
thinkpad-acpi: remove HKEY disable functionality
thinkpad-acpi: add new debug helpers and warn of deprecated atts
thinkpad-acpi: add missing log levels
thinkpad-acpi: cleanup debug helpers
thinkpad-acpi: documentation cleanup
thinkpad-acpi: drop ibm-acpi alias
...
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r-- | drivers/acpi/osl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index eb8980d67368..d59f08ecaf16 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -1070,9 +1070,9 @@ __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); | |||
1070 | * in arbitrary AML code and can interfere with legacy drivers. | 1070 | * in arbitrary AML code and can interfere with legacy drivers. |
1071 | * acpi_enforce_resources= can be set to: | 1071 | * acpi_enforce_resources= can be set to: |
1072 | * | 1072 | * |
1073 | * - strict (2) | 1073 | * - strict (default) (2) |
1074 | * -> further driver trying to access the resources will not load | 1074 | * -> further driver trying to access the resources will not load |
1075 | * - lax (default) (1) | 1075 | * - lax (1) |
1076 | * -> further driver trying to access the resources will load, but you | 1076 | * -> further driver trying to access the resources will load, but you |
1077 | * get a system message that something might go wrong... | 1077 | * get a system message that something might go wrong... |
1078 | * | 1078 | * |
@@ -1084,7 +1084,7 @@ __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); | |||
1084 | #define ENFORCE_RESOURCES_LAX 1 | 1084 | #define ENFORCE_RESOURCES_LAX 1 |
1085 | #define ENFORCE_RESOURCES_NO 0 | 1085 | #define ENFORCE_RESOURCES_NO 0 |
1086 | 1086 | ||
1087 | static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_LAX; | 1087 | static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; |
1088 | 1088 | ||
1089 | static int __init acpi_enforce_resources_setup(char *str) | 1089 | static int __init acpi_enforce_resources_setup(char *str) |
1090 | { | 1090 | { |