aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/input-polldev.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/linux/input-polldev.h b/include/linux/input-polldev.h
index 597a0077b3c5..5c0ec68a965e 100644
--- a/include/linux/input-polldev.h
+++ b/include/linux/input-polldev.h
@@ -14,9 +14,11 @@
14 14
15/** 15/**
16 * struct input_polled_dev - simple polled input device 16 * struct input_polled_dev - simple polled input device
17 * @private: private driver data 17 * @private: private driver data.
18 * @flush: driver-supplied method that flushes device's state upon 18 * @open: driver-supplied method that prepares device for polling
19 * opening (optional) 19 * (enabled the device and maybe flushes device state).
20 * @close: driver-supplied method that is called when device is no
21 * longer being polled. Used to put device into low power mode.
20 * @poll: driver-supplied method that polls the device and posts 22 * @poll: driver-supplied method that polls the device and posts
21 * input events (mandatory). 23 * input events (mandatory).
22 * @poll_interval: specifies how often the poll() method shoudl be called. 24 * @poll_interval: specifies how often the poll() method shoudl be called.
@@ -30,7 +32,8 @@
30struct input_polled_dev { 32struct input_polled_dev {
31 void *private; 33 void *private;
32 34
33 void (*flush)(struct input_polled_dev *dev); 35 void (*open)(struct input_polled_dev *dev);
36 void (*close)(struct input_polled_dev *dev);
34 void (*poll)(struct input_polled_dev *dev); 37 void (*poll)(struct input_polled_dev *dev);
35 unsigned int poll_interval; /* msec */ 38 unsigned int poll_interval; /* msec */
36 39