diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-12-28 02:33:20 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-12-28 02:33:20 +0100 |
commit | 5c461b913a16aed8afa285a1d00414791a9afe33 (patch) | |
tree | 95c7d32fcb899240e8bc5ab5bfac20d259a81b46 /drivers/input/evdev.c | |
parent | Input: bu21013_ts - fix misuse of logical operation in place of bitop (diff) | |
parent | Input: synaptics - ignore bogus mt packet (diff) | |
download | linux-5c461b913a16aed8afa285a1d00414791a9afe33.tar.xz linux-5c461b913a16aed8afa285a1d00414791a9afe33.zip |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt into next
Diffstat (limited to 'drivers/input/evdev.c')
-rw-r--r-- | drivers/input/evdev.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index 17660b1c8591..f8635b7b4295 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c @@ -678,6 +678,10 @@ static long evdev_do_ioctl(struct file *file, unsigned int cmd, #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT)) switch (EVIOC_MASK_SIZE(cmd)) { + case EVIOCGPROP(0): + return bits_to_user(dev->propbit, INPUT_PROP_MAX, + size, p, compat_mode); + case EVIOCGKEY(0): return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode); |