diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-29 23:42:45 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-29 23:42:45 -0400 |
commit | 0dcd8073673115eeb67343787f244905f62532f2 (patch) | |
tree | fd419ac046696d3255d029dd77005c3345f5a9f1 /drivers/input/misc/Kconfig | |
parent | 85796e7d939a39787f10a643477298678fed85db (diff) | |
download | op-kernel-dev-0dcd8073673115eeb67343787f244905f62532f2.zip op-kernel-dev-0dcd8073673115eeb67343787f244905f62532f2.tar.gz |
Input: add skeleton for simple polled devices
input-polldev provides a skeleton for supporting simple input
devices that need to be periodically scanned or polled to
detect changes in their state.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/misc/Kconfig')
-rw-r--r-- | drivers/input/misc/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index 5694115..696c960 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig @@ -90,6 +90,17 @@ config INPUT_UINPUT To compile this driver as a module, choose M here: the module will be called uinput. +config INPUT_POLLDEV + tristate "Polled input device skeleton" + help + Say Y here if you are using a driver for an input + device that periodically polls hardware state. This + option is only useful for out-of-tree drivers since + in-tree drivers select it automatically. + + To compile this driver as a module, choose M here: the + module will be called input-polldev. + config HP_SDC_RTC tristate "HP SDC Real Time Clock" depends on GSC || HP300 |