aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Lu <aaron.lu@intel.com>2015-12-30 00:11:24 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-12-31 21:14:57 -0500
commit49eb5208220a9eef7529decbdefd95e4b94a928b (patch)
tree84df310b3e181a0b4a4c960dca38ca5f21a0ee6a
parent4b4b3b20e8e645be103cf737827372f86479867a (diff)
ACPI / video: Add a quirk to force acpi-video backlight on SAMSUNG 530U4E/540U4E
The native interface on SAMSUNG 530U4E/540U4E doesn't work even though the firmware claims Win8 compatible while the acpi_video interface works, add a quirk for this. Link: https://bugzilla.kernel.org/show_bug.cgi?id=108971 Reported-and-tested-by: adam bk <adamdd55@gmail.com> Signed-off-by: Aaron Lu <aaron.lu@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/video_detect.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index 8fe2682380e9..90e2d54be526 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -250,6 +250,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
250 DMI_MATCH(DMI_PRODUCT_NAME, "XPS L521X"), 250 DMI_MATCH(DMI_PRODUCT_NAME, "XPS L521X"),
251 }, 251 },
252 }, 252 },
253 {
254 /* https://bugzilla.kernel.org/show_bug.cgi?id=108971 */
255 .callback = video_detect_force_video,
256 .ident = "SAMSUNG 530U4E/540U4E",
257 .matches = {
258 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
259 DMI_MATCH(DMI_PRODUCT_NAME, "530U4E/540U4E"),
260 },
261 },
253 262
254 /* Non win8 machines which need native backlight nevertheless */ 263 /* Non win8 machines which need native backlight nevertheless */
255 { 264 {