diff options
author | Henrik Rydberg <rydberg@euromail.se> | 2012-01-12 19:40:34 +0100 |
---|---|---|
committer | Henrik Rydberg <rydberg@euromail.se> | 2012-02-02 14:42:20 +0100 |
commit | b89529a10c954f14191367355da2a6053c49abb9 (patch) | |
tree | 89b69d46d9ce55cf96d8586a9468de3fb5fbb694 /include/linux/input | |
parent | 62aa2b537c6f5957afd98e29f96897419ed5ebab (diff) | |
download | blackbird-op-linux-b89529a10c954f14191367355da2a6053c49abb9.tar.gz blackbird-op-linux-b89529a10c954f14191367355da2a6053c49abb9.zip |
Input: Use accessor for MT values
The current MT accessor function does not distinguish between the MT
values and the slot specification event. Add an accessor function for
the values only, and use it where appropriate.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'include/linux/input')
-rw-r--r-- | include/linux/input/mt.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/linux/input/mt.h b/include/linux/input/mt.h index 318bb82325a6..f86737586e19 100644 --- a/include/linux/input/mt.h +++ b/include/linux/input/mt.h @@ -48,10 +48,14 @@ static inline void input_mt_slot(struct input_dev *dev, int slot) input_event(dev, EV_ABS, ABS_MT_SLOT, slot); } +static inline bool input_is_mt_value(int axis) +{ + return axis >= ABS_MT_FIRST && axis <= ABS_MT_LAST; +} + static inline bool input_is_mt_axis(int axis) { - return axis == ABS_MT_SLOT || - (axis >= ABS_MT_FIRST && axis <= ABS_MT_LAST); + return axis == ABS_MT_SLOT || input_is_mt_value(axis); } void input_mt_report_slot_state(struct input_dev *dev, |