From 7ae555a4a2b981bf47ffa0936183d878e0697b52 Mon Sep 17 00:00:00 2001 From: "Krzysztof A. Sobiecki" Date: Tue, 25 Nov 2014 02:33:53 +0100 Subject: Ignore devices that have joystick buttons This patch allows libinput to ignore devices that have joystick buttons. Signed-off-by: Krzysztof Sobiecki Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer --- src/evdev.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/evdev.c b/src/evdev.c index 908a8bad..baa1c514 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -1266,6 +1266,15 @@ evdev_configure_device(struct evdev_device *device) has_keyboard = 0; has_touch = 0; + for (i = BTN_JOYSTICK; i < BTN_DIGI; i++) { + if (libevdev_has_event_code(evdev, EV_KEY, i)) { + log_info(libinput, + "input device '%s', %s is a joystick, ignoring\n", + device->devname, devnode); + return -1; + } + } + if (libevdev_has_event_type(evdev, EV_ABS)) { if ((absinfo = libevdev_get_abs_info(evdev, ABS_X))) { -- cgit v1.2.1