]> Git Repo - linux.git/commitdiff
ACPI / video: Add quirk to force acpi-video backlight on Samsung 670Z5E
authorHans de Goede <[email protected]>
Mon, 19 Mar 2018 17:01:45 +0000 (18:01 +0100)
committerRafael J. Wysocki <[email protected]>
Tue, 20 Mar 2018 09:38:17 +0000 (10:38 +0100)
Just like many other Samsung models, the 670Z5E needs to use the acpi-video
backlight interface rather then the native one for backlight control to
work, add a quirk for this.

Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1557060
Cc: All applicable <[email protected]>
Signed-off-by: Hans de Goede <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/acpi/video_detect.c

index 601e5d372887d548c89e6e1dd8cae5533a2e3927..43587ac680e472afe6ac5cbb0bbbfa3b0c9f93e7 100644 (file)
@@ -219,6 +219,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
                          "3570R/370R/470R/450R/510R/4450RV"),
                },
        },
+       {
+        /* https://bugzilla.redhat.com/show_bug.cgi?id=1557060 */
+        .callback = video_detect_force_video,
+        .ident = "SAMSUNG 670Z5E",
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "670Z5E"),
+               },
+       },
        {
         /* https://bugzilla.redhat.com/show_bug.cgi?id=1094948 */
         .callback = video_detect_force_video,
This page took 0.079126 seconds and 4 git commands to generate.