diff options
author | Shaohua Li <shaohua.li@intel.com> | 2011-07-28 13:48:43 -0700 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-08-02 14:52:30 -0400 |
commit | aa165971c2923d05988f920c978e438dbc7b0de6 (patch) | |
tree | 2f47557bc347a4c411a34d97303163711dcf497f /drivers/acpi/osl.c | |
parent | f52e00c668669c9c290e84adf859c76db6d92a5a (diff) | |
download | op-kernel-dev-aa165971c2923d05988f920c978e438dbc7b0de6.zip op-kernel-dev-aa165971c2923d05988f920c978e438dbc7b0de6.tar.gz |
ACPI: add missing _OSI strings
Linux supports some optional features, but it should notify the BIOS about
them via the _OSI method. Currently Linux doesn't notify any, which might
make such features not work because the BIOS doesn't know about them.
Jarosz has a system which needs this to make ACPI processor aggregator
device work.
Reported-by: "Jarosz, Sebastian" <sebastian.jarosz@intel.com>
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Acked-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/osl.c')
-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 372f9b7..0e47857 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -1083,7 +1083,13 @@ struct osi_setup_entry { bool enable; }; -static struct osi_setup_entry __initdata osi_setup_entries[OSI_STRING_ENTRIES_MAX]; +static struct osi_setup_entry __initdata + osi_setup_entries[OSI_STRING_ENTRIES_MAX] = { + {"Module Device", true}, + {"Processor Device", true}, + {"3.0 _SCP Extensions", true}, + {"Processor Aggregator Device", true}, +}; void __init acpi_osi_setup(char *str) { |