Skip to content

Commit 96b709b

Browse files
Jiri Slaby (SUSE)rafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
The Lenovo Ideapad Z470 predates Windows 8, so it defaults to using acpi_video for backlight control. But this is not functional on this model. Add a DMI quirk to use the native backlight interface which works. Link: https://bugzilla.suse.com/show_bug.cgi?id=1208724 Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent fdf0eaf commit 96b709b

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
@@ -445,6 +445,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
445445
DMI_MATCH(DMI_BOARD_NAME, "Lenovo IdeaPad S405"),
446446
},
447447
},
448+
{
449+
/* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */
450+
.callback = video_detect_force_native,
451+
/* Lenovo Ideapad Z470 */
452+
.matches = {
453+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
454+
DMI_MATCH(DMI_PRODUCT_VERSION, "IdeaPad Z470"),
455+
},
456+
},
448457
{
449458
/* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */
450459
.callback = video_detect_force_native,

0 commit comments

Comments
 (0)