Skip to content

Commit 23d28cc

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Dell Studio 1569
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]>
1 parent aa8a950 commit 23d28cc

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
@@ -528,6 +528,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
528528
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
529529
},
530530
},
531+
{
532+
.callback = video_detect_force_native,
533+
/* Dell Studio 1569 */
534+
.matches = {
535+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
536+
DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1569"),
537+
},
538+
},
531539
{
532540
.callback = video_detect_force_native,
533541
/* Acer Aspire 3830TG */

0 commit comments

Comments
 (0)