Skip to content

Commit c901f63

Browse files
tiwairafaeljw
authored andcommitted
ACPI: video: Add backlight=native quirk for Lenovo Slim 7 16ARH7
Lenovo Slim 7 16ARH7 is a machine with switchable graphics between AMD and Nvidia, and the backlight can't be adjusted properly unless acpi_backlight=native is passed. Although nvidia-wmi-backlight is present and loaded, this doesn't work as expected at all. For making it working as default, add the corresponding quirk entry with a DMI matching "LENOVO" "82UX". Link: https://bugzilla.suse.com/show_bug.cgi?id=1217750 Signed-off-by: Takashi Iwai <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent dd5a440 commit c901f63

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
@@ -497,6 +497,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
497497
DMI_MATCH(DMI_PRODUCT_NAME, "82BK"),
498498
},
499499
},
500+
{
501+
.callback = video_detect_force_native,
502+
/* Lenovo Slim 7 16ARH7 */
503+
.matches = {
504+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
505+
DMI_MATCH(DMI_PRODUCT_NAME, "82UX"),
506+
},
507+
},
500508
{
501509
.callback = video_detect_force_native,
502510
/* Lenovo ThinkPad X131e (3371 AMD version) */

0 commit comments

Comments
 (0)