From 57c5a409d632c44928f4560c694efba9c26dce1e Mon Sep 17 00:00:00 2001 From: Benjamin Tissoires Date: Thu, 26 Oct 2017 10:17:06 +0200 Subject: [PATCH] udev: drop the version field in device groups The version field is a per device information. We have no guarantees a touchscreen and a tablet device will share the same version of the firmware (especially if both firmwares are from different vendors). Fixes the touch arbitration for the Dell Canvas 27 Signed-off-by: Benjamin Tissoires Signed-off-by: Peter Hutterer --- udev/libinput-device-group.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/udev/libinput-device-group.c b/udev/libinput-device-group.c index a9d69efd..dc0daa7e 100644 --- a/udev/libinput-device-group.c +++ b/udev/libinput-device-group.c @@ -216,11 +216,10 @@ int main(int argc, char **argv) #endif snprintf(group, sizeof(group), - "%x/%x/%x/%x:%s", + "%x/%x/%x:%s", bustype, vendor_id, product_id, - version, phys); }