Skip to content

Commit eadccb8

Browse files
jwrdegoederoxanan1996
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Dell Studio 1569
BugLink: https://bugs.launchpad.net/bugs/2037005 [ Upstream commit 23d28cc ] The Dell Studio 1569 predates Windows 8, so it defaults to using acpi_video# for backlight control, but this is non functional on this model. Add a DMI quirk to use the native intel_backlight interface which does work properly. Reported-by: raycekarneal <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]> Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Kamal Mostafa <[email protected]> Signed-off-by: Roxana Nicolescu <[email protected]>
1 parent bf8a6c8 commit eadccb8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
512512
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
513513
},
514514
},
515+
{
516+
.callback = video_detect_force_native,
517+
/* Dell Studio 1569 */
518+
.matches = {
519+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
520+
DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1569"),
521+
},
522+
},
515523
{
516524
.callback = video_detect_force_native,
517525
/* Acer Aspire 3830TG */

0 commit comments

Comments
 (0)