Call a input_set_default_property() in evdev_device_create if this function is exist
authorJengHyun Kang <jhyuni.kang@samsung.com>
Tue, 12 Jul 2016 08:52:27 +0000 (17:52 +0900)
committerjeon <jhyuni.kang@samsung.com>
Mon, 17 Feb 2020 06:38:20 +0000 (15:38 +0900)
Change-Id: Ib47c6115248204d9ff63ced802c557b1bf5ad5f5

meson.build
src/evdev.c

index cf513f96517d2cf694bbe7271b0b66f9b024ca5a..affc0d6680578a274da3a69ab623c1ceab8acb14 100644 (file)
@@ -157,6 +157,11 @@ if dep_ttrace.found()
        config_h.set10('ENABLE_TTRACE', 1)
 endif
 
+############ check udev function  ############
+
+if cc.has_function('input_set_default_property', dependencies : dep_udev)
+       config_h.set10('HAVE_INPUT_SET_DEFAULT_PROPERTY', 1)
+endif
 
 ############ udev bits ############
 
index 599b9b801af323bbee830bbc1af9846dcc88e7a8..7e18d9db986efd2a8095390b2821cada2c5e216c 100644 (file)
@@ -2194,10 +2194,16 @@ evdev_device_create(struct libinput_seat *seat,
        int rc;
        int fd;
        int unhandled_device = 0;
-       const char *devnode = udev_device_get_devnode(udev_device);
+       const char *devnode;
        const char *sysname = udev_device_get_sysname(udev_device);
        char buf[STRERR_BUFSIZE] = {0, };
 
+#ifdef HAVE_INPUT_SET_DEFAULT_PROPERTY
+       if (input_set_default_property(udev_device) < 0)
+               return NULL;
+#endif
+       devnode = udev_device_get_devnode(udev_device);
+
        if (!devnode) {
                log_info(libinput, "%s: no device node associated\n", sysname);
                return NULL;