diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2006-07-06 00:20:47 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2006-07-06 00:20:47 -0400 |
commit | e9c8862f19958846dd0c7b39d0f6216aad6c7bee (patch) | |
tree | 667682c0dbbfd3678f79c06d59a17968f22cbfde /drivers/input/evdev.c | |
parent | e340221acda6bc0bf05a0ff6e6114902c4307670 (diff) | |
download | linux-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.tar.gz linux-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.tar.xz |
Input: remove accept method from input_dev
This method used to enforce exclusive access to iforce devices,
but presenlty there are no known users of this method.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/evdev.c')
-rw-r--r-- | drivers/input/evdev.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index a29d5ceb00cf..2426a5d8537d 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c @@ -127,14 +127,10 @@ static int evdev_open(struct inode * inode, struct file * file) { struct evdev_list *list; int i = iminor(inode) - EVDEV_MINOR_BASE; - int accept_err; if (i >= EVDEV_MINORS || !evdev_table[i] || !evdev_table[i]->exist) return -ENODEV; - if ((accept_err = input_accept_process(&(evdev_table[i]->handle), file))) - return accept_err; - if (!(list = kzalloc(sizeof(struct evdev_list), GFP_KERNEL))) return -ENOMEM; |