Skip to content

Commit 1c8fbc1

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Use native backlight on Acer Aspire 5783z
The Acer Aspire 5783z shipped with Windows 7 and as such does not trigger our "win8 ready" heuristic for prefering the native backlight interface. Still ACPI backlight control doesn't work on this model, where as the native (intel_video) backlight interface does work. Add a quirk to force using native backlight control on this model. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 5fd769c commit 1c8fbc1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
352352
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
353353
},
354354
},
355+
{
356+
.callback = video_detect_force_native,
357+
.ident = "Acer Aspire 5738z",
358+
.matches = {
359+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
360+
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5738"),
361+
DMI_MATCH(DMI_BOARD_NAME, "JV50"),
362+
},
363+
},
355364

356365
/*
357366
* Desktops which falsely report a backlight and which our heuristics

0 commit comments

Comments
 (0)