aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/hid/tests/test_multitouch.py
diff options
context:
space:
mode:
authorBenjamin Tissoires <bentiss@kernel.org>2025-07-09 11:08:50 +0200
committerBenjamin Tissoires <bentiss@kernel.org>2025-07-10 16:20:27 +0200
commit642f9b2d608cc2239d22957ca1dc557d07470b50 (patch)
tree8f1b1652763d9168882fd73f32d738b0faaa4141 /tools/testing/selftests/hid/tests/test_multitouch.py
parentselftests/hid: run ruff format on the python part (diff)
downloadlinux-642f9b2d608cc2239d22957ca1dc557d07470b50.tar.gz
linux-642f9b2d608cc2239d22957ca1dc557d07470b50.zip
selftests/hid: sync the python tests to hid-tools 0.8
Instead of backporting one by one each commits, let's pull them in bulk and refer to the hid-tools project for a detailed history. The short summary is: - make use of dataclass when possible, to avoid tuples - wacom: remove unused uhdev parameter - various small fixes not worth mentioning Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Link: https://patch.msgid.link/20250709-wip-fix-ci-v1-2-b7df4c271cf8@kernel.org Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Diffstat (limited to 'tools/testing/selftests/hid/tests/test_multitouch.py')
-rw-r--r--tools/testing/selftests/hid/tests/test_multitouch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/hid/tests/test_multitouch.py b/tools/testing/selftests/hid/tests/test_multitouch.py
index 4265012231c6..5d2ffa3d5977 100644
--- a/tools/testing/selftests/hid/tests/test_multitouch.py
+++ b/tools/testing/selftests/hid/tests/test_multitouch.py
@@ -17,7 +17,7 @@ import time
logger = logging.getLogger("hidtools.test.multitouch")
-KERNEL_MODULE = ("hid-multitouch", "hid_multitouch")
+KERNEL_MODULE = base.KernelModule("hid-multitouch", "hid_multitouch")
def BIT(x):