Linux Input/HID development
 help / color / mirror / Atom feed
* [PATCH] platform/x86: touchscreen_dmi: add DMI match for ARC 11.6 128GB HD
@ 2026-01-27 23:52 Rafał Żuchnik
  2026-01-29 16:02 ` johannes.goede
  0 siblings, 1 reply; 2+ messages in thread
From: Rafał Żuchnik @ 2026-01-27 23:52 UTC (permalink / raw)
  To: platform-driver-x86; +Cc: linux-input

This device is identical to Techbite Arc 11.6, but ships with a different
DMI_PRODUCT_NAME ("ARC 11.6 128GB HD").

Without this DMI match, the Silead touchscreen reports an incorrect coordinate
range, resulting in partial and wrapped touch input under Wayland.

Reuse the existing techbite_arc_11_6_data for this model.

Signed-off-by: Rafal Zuchnik <rafal.zuchnik@gmail.com>

---
diff --git a/drivers/platform/x86/touchscreen_dmi.c
b/drivers/platform/x86/touchscreen_dmi.c
--- a/drivers/platform/x86/touchscreen_dmi.c
+++ b/drivers/platform/x86/touchscreen_dmi.c
@@
     {
         .matches = {
             DMI_MATCH(DMI_SYS_VENDOR, "mPTech"),
             DMI_MATCH(DMI_PRODUCT_NAME, "techBite Arc 11.6"),
             DMI_MATCH(DMI_BOARD_NAME, "G8316_272B"),
         },
         .driver_data = (void *)&techbite_arc_11_6_data,
     },
+    {
+        .matches = {
+            DMI_MATCH(DMI_SYS_VENDOR, "mPTech"),
+            DMI_MATCH(DMI_PRODUCT_NAME, "ARC 11.6 128GB HD"),
+        },
+        .driver_data = (void *)&techbite_arc_11_6_data,
+    },
 };

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-01-29 16:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-27 23:52 [PATCH] platform/x86: touchscreen_dmi: add DMI match for ARC 11.6 128GB HD Rafał Żuchnik
2026-01-29 16:02 ` johannes.goede

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox