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/input.c | |
parent | e340221acda6bc0bf05a0ff6e6114902c4307670 (diff) | |
download | talos-obmc-linux-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.tar.gz talos-obmc-linux-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.zip |
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/input.c')
-rw-r--r-- | drivers/input/input.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index a90486f5e491..c2e4d9bdcabf 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -197,15 +197,6 @@ static void input_repeat_key(unsigned long data) mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->rep[REP_PERIOD])); } -int input_accept_process(struct input_handle *handle, struct file *file) -{ - if (handle->dev->accept) - return handle->dev->accept(handle->dev, file); - - return 0; -} -EXPORT_SYMBOL(input_accept_process); - int input_grab_device(struct input_handle *handle) { if (handle->dev->grab) |