From d8c4dc4ce3175d7df9d309d111b48f2db084285c Mon Sep 17 00:00:00 2001 From: illiliti Date: Wed, 25 Aug 2021 03:22:30 +0300 Subject: [PATCH] udev_device.c: define INPUT_PROP_CNT --- udev_device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/udev_device.c b/udev_device.c index 47dd00f..d9ca6c7 100644 --- a/udev_device.c +++ b/udev_device.c @@ -44,6 +44,10 @@ #define INPUT_PROP_ACCELEROMETER 0x06 #endif +#ifndef INPUT_PROP_CNT +#define INPUT_PROP_CNT 0x20 +#endif + struct udev_device { struct udev_list_entry properties; struct udev_list_entry sysattrs;