aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDmitry Torokhov <dtor@insightbb.com>2006-09-14 01:32:28 -0400
committerDmitry Torokhov <dtor@insightbb.com>2006-09-14 01:32:28 -0400
commit68c2a1607cd6dd12427c9566b39756e92708713c (patch)
treec3fc9a44a66f90bbdb08426886f14c664dfbaffc /include
parent655816e49867082d13ece0da31d76e12cc0de4a5 (diff)
Input: remove cruft that was needed for transition to sysfs
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include')
-rw-r--r--include/linux/input.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/input.h b/include/linux/input.h
index 300036b7755a..155b2bc96842 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -978,9 +978,6 @@ struct input_dev {
978 unsigned int users; 978 unsigned int users;
979 979
980 struct class_device cdev; 980 struct class_device cdev;
981 struct device *dev; /* will be removed soon */
982
983 int dynalloc; /* temporarily */
984 981
985 struct list_head h_list; 982 struct list_head h_list;
986 struct list_head node; 983 struct list_head node;
@@ -1093,12 +1090,6 @@ struct input_handle {
1093#define to_handle(n) container_of(n,struct input_handle,d_node) 1090#define to_handle(n) container_of(n,struct input_handle,d_node)
1094#define to_handle_h(n) container_of(n,struct input_handle,h_node) 1091#define to_handle_h(n) container_of(n,struct input_handle,h_node)
1095 1092
1096static inline void init_input_dev(struct input_dev *dev)
1097{
1098 INIT_LIST_HEAD(&dev->h_list);
1099 INIT_LIST_HEAD(&dev->node);
1100}
1101
1102struct input_dev *input_allocate_device(void); 1093struct input_dev *input_allocate_device(void);
1103void input_free_device(struct input_dev *dev); 1094void input_free_device(struct input_dev *dev);
1104 1095