evdev: Stop looking for pointer buttons when we get to BTN_JOYSTICK

We don't want to mark a touchscreen as a button device just because it
exposes the BTN_TOUCH and BTN_TOOL buttons.
This commit is contained in:
Kristian Høgsberg 2013-10-14 15:28:01 -07:00 committed by Jonas Ådahl
parent ee5f763fc8
commit 5d493ad6f4

View file

@ -524,7 +524,7 @@ evdev_handle_device(struct evdev_device *device)
break;
}
}
for (i = BTN_MISC; i < KEY_OK; i++) {
for (i = BTN_MISC; i < BTN_JOYSTICK; i++) {
if (TEST_BIT(key_bits, i)) {
device->caps |= EVDEV_BUTTON;
break;