diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-10-03 13:13:03 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-09 20:23:37 -0400 |
commit | b4cb9244a544a1623305eb58267a90418268d31e (patch) | |
tree | ed649bf40e77eac4132b1946b9b68612d79e8279 | |
parent | d0e639c9e06d44e713170031fe05fb60ebe680af (diff) |
ACPI: update win8 OSI blacklist
More people have reported they need this for their machines to work
correctly.
References: https://bugzilla.kernel.org/show_bug.cgi?id=60682
Reported-by: Stefan Hellermann <bugzilla.kernel.org@the2masters.de>
Reported-by: Benedikt Sauer <filmor@gmail.com>
Reported-by: Erno Kuusela <erno@iki.fi>
Reported-by: Jonathan Doman <jonathan.doman@gmail.com>
Reported-by: Christoph Klaffl <christophklaffl@gmail.com>
Reported-by: Jan Hendrik Nielsen <jan.hendrik.nielsen@informatik.hu-berlin.de>
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/blacklist.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index 9515f18898b2..f37dec579712 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c | |||
@@ -297,6 +297,54 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
297 | DMI_MATCH(DMI_PRODUCT_VERSION, "3259A2G"), | 297 | DMI_MATCH(DMI_PRODUCT_VERSION, "3259A2G"), |
298 | }, | 298 | }, |
299 | }, | 299 | }, |
300 | { | ||
301 | .callback = dmi_disable_osi_win8, | ||
302 | .ident = "ThinkPad Edge E530", | ||
303 | .matches = { | ||
304 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
305 | DMI_MATCH(DMI_PRODUCT_VERSION, "3259CTO"), | ||
306 | }, | ||
307 | }, | ||
308 | { | ||
309 | .callback = dmi_disable_osi_win8, | ||
310 | .ident = "ThinkPad Edge E530", | ||
311 | .matches = { | ||
312 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
313 | DMI_MATCH(DMI_PRODUCT_VERSION, "3259HJG"), | ||
314 | }, | ||
315 | }, | ||
316 | { | ||
317 | .callback = dmi_disable_osi_win8, | ||
318 | .ident = "Acer Aspire V5-573G", | ||
319 | .matches = { | ||
320 | DMI_MATCH(DMI_SYS_VENDOR, "Acer Aspire"), | ||
321 | DMI_MATCH(DMI_PRODUCT_VERSION, "V5-573G/Dazzle_HW"), | ||
322 | }, | ||
323 | }, | ||
324 | { | ||
325 | .callback = dmi_disable_osi_win8, | ||
326 | .ident = "Acer Aspire V5-572G", | ||
327 | .matches = { | ||
328 | DMI_MATCH(DMI_SYS_VENDOR, "Acer Aspire"), | ||
329 | DMI_MATCH(DMI_PRODUCT_VERSION, "V5-572G/Dazzle_CX"), | ||
330 | }, | ||
331 | }, | ||
332 | { | ||
333 | .callback = dmi_disable_osi_win8, | ||
334 | .ident = "ThinkPad T431s", | ||
335 | .matches = { | ||
336 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
337 | DMI_MATCH(DMI_PRODUCT_VERSION, "20AACTO1WW"), | ||
338 | }, | ||
339 | }, | ||
340 | { | ||
341 | .callback = dmi_disable_osi_win8, | ||
342 | .ident = "ThinkPad T430", | ||
343 | .matches = { | ||
344 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
345 | DMI_MATCH(DMI_PRODUCT_VERSION, "2349D15"), | ||
346 | }, | ||
347 | }, | ||
300 | 348 | ||
301 | /* | 349 | /* |
302 | * BIOS invocation of _OSI(Linux) is almost always a BIOS bug. | 350 | * BIOS invocation of _OSI(Linux) is almost always a BIOS bug. |