diff options
-rw-r--r-- | input.h | 2 | ||||
-rwxr-xr-x | lirc.sh | 2 | ||||
-rwxr-xr-x | name.sh | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ #include <inttypes.h> #include <sys/ioctl.h> -#include "linux-input.h" +#include <linux/input.h> #define ev_name(code) ((code) < EV_MAX && EV_NAME[code] ? EV_NAME[code] : "???") #define ev_type_name(type, code) ((code) < EV_TYPE_MAX[type] && EV_TYPE_NAME[type][code] ? EV_TYPE_NAME[type][code] : "???") @@ -1,5 +1,5 @@ #!/bin/sh -INPUT="linux-input.h" +INPUT="/usr/include/linux/input.h" cat <<EOF begin remote name linux-input-layer @@ -1,7 +1,7 @@ #!/bin/sh TYPE="$1" -INPUT="linux-input.h" +INPUT="/usr/include/linux/input.h" awk " /EV_VERSION/ { next }; |