diff options
author | Dmitry Torokhov <dtor_core@ameritech.net> | 2005-11-20 00:51:33 -0500 |
---|---|---|
committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2005-11-20 00:51:33 -0500 |
commit | 59c7c0377e00a3cbd7b71631177fb92166ceb437 (patch) | |
tree | 74457d6759338db05c29eb5dc766b8472b7bb496 /drivers/input/misc | |
parent | 29506415a0ff0152cc2928f8fcac724fbbf98651 (diff) |
Input: uinput - add UI_SET_SWBIT ioctl
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r-- | drivers/input/misc/uinput.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 713260322137..4702ade804ac 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
@@ -495,6 +495,10 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
495 | retval = uinput_set_bit(arg, ffbit, FF_MAX); | 495 | retval = uinput_set_bit(arg, ffbit, FF_MAX); |
496 | break; | 496 | break; |
497 | 497 | ||
498 | case UI_SET_SWBIT: | ||
499 | retval = uinput_set_bit(arg, swbit, SW_MAX); | ||
500 | break; | ||
501 | |||
498 | case UI_SET_PHYS: | 502 | case UI_SET_PHYS: |
499 | if (udev->state == UIST_CREATED) { | 503 | if (udev->state == UIST_CREATED) { |
500 | retval = -EINVAL; | 504 | retval = -EINVAL; |