Skip to content

Commit 8ba5fc4

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Acer Aspire 4810T
The Acer Aspire 4810T 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 5dc4c99 commit 8ba5fc4

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
@@ -515,6 +515,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
515515
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
516516
},
517517
},
518+
{
519+
.callback = video_detect_force_native,
520+
/* Acer Aspire 4810T */
521+
.matches = {
522+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
523+
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 4810T"),
524+
},
525+
},
518526
{
519527
.callback = video_detect_force_native,
520528
/* Acer Aspire 5738z */

0 commit comments

Comments
 (0)