diff options
author | Len Brown <len.brown@intel.com> | 2009-04-05 01:50:46 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-04-05 01:50:46 -0400 |
commit | 3b4dadf05d177289c279c50030c7c75e004952bb (patch) | |
tree | 5ee1a21f5dd3d4682e7ed9f92ba97fa4a507f62f /drivers | |
parent | 59b17bf6ea06abed519dfc788fff1b6b9499d23f (diff) | |
parent | 7e90560c50f754d65884e251e94c1efa2a4b5784 (diff) | |
download | linux-3.10-3b4dadf05d177289c279c50030c7c75e004952bb.tar.gz linux-3.10-3b4dadf05d177289c279c50030c7c75e004952bb.tar.bz2 linux-3.10-3b4dadf05d177289c279c50030c7c75e004952bb.zip |
Merge branch 'acpi_enforce_resources' into release
Diffstat (limited to 'drivers')
-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 1e35f342957..f50ca1ea80c 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -1063,9 +1063,9 @@ __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); * in arbitrary AML code and can interfere with legacy drivers. * acpi_enforce_resources= can be set to: * - * - strict (2) + * - strict (default) (2) * -> further driver trying to access the resources will not load - * - lax (default) (1) + * - lax (1) * -> further driver trying to access the resources will load, but you * get a system message that something might go wrong... * @@ -1077,7 +1077,7 @@ __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); #define ENFORCE_RESOURCES_LAX 1 #define ENFORCE_RESOURCES_NO 0 -static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_LAX; +static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; static int __init acpi_enforce_resources_setup(char *str) { |