Skip to content

Commit 4d9d7e5

Browse files
jwrdegoedegregkh
authored andcommitted
ACPI: video: Fix Lenovo Ideapad Z570 DMI match
[ Upstream commit 2d11eae ] 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]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 90fa009 commit 4d9d7e5

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
@@ -313,7 +313,7 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
313313
.ident = "Lenovo Ideapad Z570",
314314
.matches = {
315315
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
316-
DMI_MATCH(DMI_PRODUCT_NAME, "102434U"),
316+
DMI_MATCH(DMI_PRODUCT_VERSION, "Ideapad Z570"),
317317
},
318318
},
319319
{

0 commit comments

Comments
 (0)