aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/input.h
diff options
context:
space:
mode:
authorDmitry Torokhov <dtor_core@ameritech.net>2005-09-15 03:01:39 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-10-28 12:52:52 -0400
commitd19fbe8a763634395d4bef40fc88cdb61c4a6274 (patch)
tree476cedefc829d1523507aebb2093b0d3b58469b0 /include/linux/input.h
parent4f00469c16b86a3dd6ed66b28c605c8430d58eeb (diff)
[PATCH] Input: prepare to sysfs integration
Input: prepare to sysfs integration Add struct class_device to input_dev; add input_allocate_dev() to dynamically allocate input devices; dynamically allocated devices are automatically registered with sysfs. Signed-off-by: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/input.h')
-rw-r--r--include/linux/input.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/include/linux/input.h b/include/linux/input.h
index e8c296ff6257..3defa29a17d3 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -12,6 +12,7 @@
12#ifdef __KERNEL__ 12#ifdef __KERNEL__
13#include <linux/time.h> 13#include <linux/time.h>
14#include <linux/list.h> 14#include <linux/list.h>
15#include <linux/device.h>
15#else 16#else
16#include <sys/time.h> 17#include <sys/time.h>
17#include <sys/ioctl.h> 18#include <sys/ioctl.h>
@@ -889,11 +890,15 @@ struct input_dev {
889 struct semaphore sem; /* serializes open and close operations */ 890 struct semaphore sem; /* serializes open and close operations */
890 unsigned int users; 891 unsigned int users;
891 892
892 struct device *dev; 893 struct class_device cdev;
894 struct device *dev; /* will be removed soon */
895
896 int dynalloc; /* temporarily */
893 897
894 struct list_head h_list; 898 struct list_head h_list;
895 struct list_head node; 899 struct list_head node;
896}; 900};
901#define to_input_dev(d) container_of(d, struct input_dev, cdev)
897 902
898/* 903/*
899 * Structure for hotplug & device<->driver matching. 904 * Structure for hotplug & device<->driver matching.
@@ -984,6 +989,23 @@ static inline void init_input_dev(struct input_dev *dev)
984 INIT_LIST_HEAD(&dev->node); 989 INIT_LIST_HEAD(&dev->node);
985} 990}
986 991
992struct input_dev *input_allocate_device(void);
993
994static inline void input_free_device(struct input_dev *dev)
995{
996 kfree(dev);
997}
998
999static inline struct input_dev *input_get_device(struct input_dev *dev)
1000{
1001 return to_input_dev(class_device_get(&dev->cdev));
1002}
1003
1004static inline void input_put_device(struct input_dev *dev)
1005{
1006 class_device_put(&dev->cdev);
1007}
1008
987void input_register_device(struct input_dev *); 1009void input_register_device(struct input_dev *);
988void input_unregister_device(struct input_dev *); 1010void input_unregister_device(struct input_dev *);
989 1011