Skip to content

Commit 5e7a3bf

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG
The Acer Aspire 3830TG 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 backlight interface which does work properly. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent e8d018d commit 5e7a3bf

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
@@ -495,6 +495,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
495495
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
496496
},
497497
},
498+
{
499+
.callback = video_detect_force_native,
500+
/* Acer Aspire 3830TG */
501+
.matches = {
502+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
503+
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3830TG"),
504+
},
505+
},
498506
{
499507
.callback = video_detect_force_native,
500508
/* Acer Aspire 4810T */

0 commit comments

Comments
 (0)