aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-05-17 04:48:03 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-05-20 07:41:43 -0400
commit9404cd95507de0a61f2a000fbd76748a9cae33b4 (patch)
tree222a569e1528a848e487665152a31b2fc577b4ea
parentd13374154e571293bb13df743b8d53b1e6797807 (diff)
acer-wmi: Add Aspire 5741 to video_vendor_dmi_table
The Aspire 5741 has broken acpi-video backlight control, so add it to the quirk table. References: https://bugzilla.redhat.com/show_bug.cgi?id=1012674 Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Lee, Chun-Yi <jlee@suse.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/platform/x86/acer-wmi.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index 3a746998f92a..bbf78b2d6d93 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -570,6 +570,14 @@ static const struct dmi_system_id video_vendor_dmi_table[] = {
570 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5750"), 570 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5750"),
571 }, 571 },
572 }, 572 },
573 {
574 .callback = video_set_backlight_video_vendor,
575 .ident = "Acer Aspire 5741",
576 .matches = {
577 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
578 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5741"),
579 },
580 },
573 {} 581 {}
574}; 582};
575 583