aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/input-polldev.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/linux/input-polldev.h b/include/linux/input-polldev.h
index 5c0ec68a965e..5e3dddf8f562 100644
--- a/include/linux/input-polldev.h
+++ b/include/linux/input-polldev.h
@@ -21,7 +21,12 @@
21 * longer being polled. Used to put device into low power mode. 21 * longer being polled. Used to put device into low power mode.
22 * @poll: driver-supplied method that polls the device and posts 22 * @poll: driver-supplied method that polls the device and posts
23 * input events (mandatory). 23 * input events (mandatory).
24 * @poll_interval: specifies how often the poll() method shoudl be called. 24 * @poll_interval: specifies how often the poll() method should be called.
25 * Defaults to 500 msec unless overriden when registering the device.
26 * @poll_interval_max: specifies upper bound for the poll interval.
27 * Defaults to the initial value of @poll_interval.
28 * @poll_interval_min: specifies lower bound for the poll interval.
29 * Defaults to 0.
25 * @input: input device structire associated with the polled device. 30 * @input: input device structire associated with the polled device.
26 * Must be properly initialized by the driver (id, name, phys, bits). 31 * Must be properly initialized by the driver (id, name, phys, bits).
27 * 32 *
@@ -36,8 +41,12 @@ struct input_polled_dev {
36 void (*close)(struct input_polled_dev *dev); 41 void (*close)(struct input_polled_dev *dev);
37 void (*poll)(struct input_polled_dev *dev); 42 void (*poll)(struct input_polled_dev *dev);
38 unsigned int poll_interval; /* msec */ 43 unsigned int poll_interval; /* msec */
44 unsigned int poll_interval_max; /* msec */
45 unsigned int poll_interval_min; /* msec */
39 46
40 struct input_dev *input; 47 struct input_dev *input;
48
49/* private: */
41 struct delayed_work work; 50 struct delayed_work work;
42}; 51};
43 52