diff --git a/include/event-names.h b/include/event-names.h index cc6f444756fe32a7cd51a96466fc5152a845ab07..b285ee42df2ed4cf62a88be2c827f6b99e019169 100644 --- a/include/event-names.h +++ b/include/event-names.h @@ -63,6 +63,7 @@ static const char * const abs_map[ABS_MAX + 1] = { [ABS_TOOL_WIDTH] = "ABS_TOOL_WIDTH", [ABS_VOLUME] = "ABS_VOLUME", [ABS_MISC] = "ABS_MISC", + [ABS_MT_MOVEFLAG] = "ABS_MT_MOVEFLAG", [ABS_RESERVED] = "ABS_RESERVED", [ABS_MT_SLOT] = "ABS_MT_SLOT", [ABS_MT_TOUCH_MAJOR] = "ABS_MT_TOUCH_MAJOR", @@ -878,6 +879,7 @@ static const struct name_entry ev_names[] = { }; static const struct name_entry code_names[] = { + { .name = "ABS_MT_MOVEFLAG", .value = ABS_MT_MOVEFLAG }, { .name = "ABS_BRAKE", .value = ABS_BRAKE }, { .name = "ABS_DISTANCE", .value = ABS_DISTANCE }, { .name = "ABS_GAS", .value = ABS_GAS }, diff --git a/include/linux/linux/input-event-codes.h b/include/linux/linux/input-event-codes.h index 5a11fb358d43eb636cc79ab0c01a526420d7937a..81ce141126b7d5b900bd73eeb13799f53ba46cc0 100644 --- a/include/linux/linux/input-event-codes.h +++ b/include/linux/linux/input-event-codes.h @@ -843,6 +843,7 @@ #define ABS_VOLUME 0x20 #define ABS_MISC 0x28 +#define ABS_MT_MOVEFLAG 0x29 /* * 0x2e is reserved and should not be used in input drivers.