Skip to content

Commit 2d11eae

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Fix Lenovo Ideapad Z570 DMI match
Multiple Ideapad Z570 variants need acpi_backlight=native to force native use on these pre Windows 8 machines since acpi_video backlight control does not work here. The original DMI quirk matches on a product_name of "102434U" but other variants may have different product_name-s such as e.g. "1024D9U". Move to checking product_version instead as is more or less standard for Lenovo DMI quirks for similar reasons. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 4ec5183 commit 2d11eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/acpi/video_detect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
434434
/* Lenovo Ideapad Z570 */
435435
.matches = {
436436
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
437-
DMI_MATCH(DMI_PRODUCT_NAME, "102434U"),
437+
DMI_MATCH(DMI_PRODUCT_VERSION, "Ideapad Z570"),
438438
},
439439
},
440440
{

0 commit comments

Comments
 (0)