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 /include/linux/input.h | |
parent | e340221acda6bc0bf05a0ff6e6114902c4307670 (diff) | |
download | kernel_samsung_smdk4412-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.zip kernel_samsung_smdk4412-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.tar.gz kernel_samsung_smdk4412-e9c8862f19958846dd0c7b39d0f6216aad6c7bee.tar.bz2 |
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 'include/linux/input.h')
-rw-r--r-- | include/linux/input.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/input.h b/include/linux/input.h index 56f1e0e..6e3afad 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -893,7 +893,6 @@ struct input_dev { int (*open)(struct input_dev *dev); void (*close)(struct input_dev *dev); - int (*accept)(struct input_dev *dev, struct file *file); int (*flush)(struct input_dev *dev, struct file *file); int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value); int (*upload_effect)(struct input_dev *dev, struct ff_effect *effect); @@ -1030,7 +1029,6 @@ void input_release_device(struct input_handle *); int input_open_device(struct input_handle *); void input_close_device(struct input_handle *); -int input_accept_process(struct input_handle *handle, struct file *file); int input_flush_device(struct input_handle* handle, struct file* file); void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value); |