diff options
-rw-r--r-- | drivers/acpi/osl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 372f9b70f7f4..0e4785703d45 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -1083,7 +1083,13 @@ struct osi_setup_entry { | |||
1083 | bool enable; | 1083 | bool enable; |
1084 | }; | 1084 | }; |
1085 | 1085 | ||
1086 | static struct osi_setup_entry __initdata osi_setup_entries[OSI_STRING_ENTRIES_MAX]; | 1086 | static struct osi_setup_entry __initdata |
1087 | osi_setup_entries[OSI_STRING_ENTRIES_MAX] = { | ||
1088 | {"Module Device", true}, | ||
1089 | {"Processor Device", true}, | ||
1090 | {"3.0 _SCP Extensions", true}, | ||
1091 | {"Processor Aggregator Device", true}, | ||
1092 | }; | ||
1087 | 1093 | ||
1088 | void __init acpi_osi_setup(char *str) | 1094 | void __init acpi_osi_setup(char *str) |
1089 | { | 1095 | { |