aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorLan Tianyu <tianyu.lan@intel.com>2012-11-30 07:02:50 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2012-11-30 07:02:50 -0500
commitd0c2ce16bec0afa6013b4c5220ca4c9c67210215 (patch)
treea73554c8c07721aced15448b380c1f137e6c0079 /drivers/acpi
parent0ac1b1d7b7424cd6f129b5454b504b3cae746f0e (diff)
ACPI / video: Add "Asus UL30VT" to ACPI video detect blacklist
The ACPI video driver can't control backlight correctly on Asus UL30VT. Vendor driver (asus-laptop) can work. This patch is to add "Asus UL30VT" to ACPI video detect blacklist in order to use asus-laptop for video control on the "Asus UL30VT" rather than ACPI video driver. References: https://bugzilla.kernel.org/show_bug.cgi?id=32592 Reported-by: Alex Williamson <alex.williamson@redhat.com> Cc: <stable@vger.kernel.org> Signed-off-by: Lan Tianyu <tianyu.lan@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/video_detect.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index b728880ef10e..4ac2593234e7 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -156,6 +156,14 @@ static struct dmi_system_id video_detect_dmi_table[] = {
156 DMI_MATCH(DMI_BOARD_NAME, "X360"), 156 DMI_MATCH(DMI_BOARD_NAME, "X360"),
157 }, 157 },
158 }, 158 },
159 {
160 .callback = video_detect_force_vendor,
161 .ident = "Asus UL30VT",
162 .matches = {
163 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
164 DMI_MATCH(DMI_PRODUCT_NAME, "UL30VT"),
165 },
166 },
159 { }, 167 { },
160}; 168};
161 169