Skip to content

Commit eecf2ac

Browse files
committed
platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match
Add a DMI match for the CWI501 version of the Chuwi Vi8 tablet, pointing to the same chuwi_vi8_data as the existing CWI506 version DMI match. Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent eebf820 commit eecf2ac

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/platform/x86/touchscreen_dmi.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,6 +1097,15 @@ const struct dmi_system_id touchscreen_dmi_table[] = {
10971097
DMI_MATCH(DMI_BIOS_DATE, "05/07/2016"),
10981098
},
10991099
},
1100+
{
1101+
/* Chuwi Vi8 (CWI501) */
1102+
.driver_data = (void *)&chuwi_vi8_data,
1103+
.matches = {
1104+
DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
1105+
DMI_MATCH(DMI_PRODUCT_NAME, "i86"),
1106+
DMI_MATCH(DMI_BIOS_VERSION, "CHUWI.W86JLBNR01"),
1107+
},
1108+
},
11001109
{
11011110
/* Chuwi Vi8 (CWI506) */
11021111
.driver_data = (void *)&chuwi_vi8_data,

0 commit comments

Comments
 (0)