evdev: log when a device is used as touchpad
This commit is contained in:
committed by
Kristian Høgsberg
parent
6bb15cd4a8
commit
4477fee1c3
+4
-1
@@ -498,8 +498,11 @@ evdev_handle_device(struct evdev_device *device)
|
|||||||
key_bits);
|
key_bits);
|
||||||
if (TEST_BIT(key_bits, BTN_TOOL_FINGER) &&
|
if (TEST_BIT(key_bits, BTN_TOOL_FINGER) &&
|
||||||
!TEST_BIT(key_bits, BTN_TOOL_PEN) &&
|
!TEST_BIT(key_bits, BTN_TOOL_PEN) &&
|
||||||
has_abs)
|
has_abs) {
|
||||||
device->dispatch = evdev_touchpad_create(device);
|
device->dispatch = evdev_touchpad_create(device);
|
||||||
|
weston_log("input device %s, %s is a touchpad\n",
|
||||||
|
device->devname, device->devnode);
|
||||||
|
}
|
||||||
for (i = KEY_ESC; i < KEY_MAX; i++) {
|
for (i = KEY_ESC; i < KEY_MAX; i++) {
|
||||||
if (i >= BTN_MISC && i < KEY_OK)
|
if (i >= BTN_MISC && i < KEY_OK)
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user