aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/osl.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r--drivers/acpi/osl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c
index eb8980d6736..d59f08ecaf1 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
1087static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_LAX; 1087static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1088 1088
1089static int __init acpi_enforce_resources_setup(char *str) 1089static int __init acpi_enforce_resources_setup(char *str)
1090{ 1090{