diff options
author | Mike Lockwood <lockwood@android.com> | 2008-12-15 14:51:56 -0500 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:08:49 -0700 |
commit | 16e1bce6e2c2724dd92cde4eedbda3bf84dbfa02 (patch) | |
tree | e49da62fac753aa139f340ca0acf3da65862cb71 /drivers/input/misc/Makefile | |
parent | c1678677a5aa41acf015a8a9aa7e0d70fd9caaad (diff) | |
download | kernel_samsung_crespo-16e1bce6e2c2724dd92cde4eedbda3bf84dbfa02.zip kernel_samsung_crespo-16e1bce6e2c2724dd92cde4eedbda3bf84dbfa02.tar.gz kernel_samsung_crespo-16e1bce6e2c2724dd92cde4eedbda3bf84dbfa02.tar.bz2 |
input: keychord: Add keychord driver
This driver allows userspace to receive notification when client
specified key combinations are pressed.
The client opens /dev/keychord and writes a list of keychords
for the driver to monitor.
The client then reads or polls /dev/keychord for notifications.
A client specified ID for the keychord is returned from read()
when a keychord press is detected.
Signed-off-by: Mike Lockwood <lockwood@android.com>
keychord: fix to build without CONFIG_PREEMPT
Change-Id: I911f13aeda4224b6fa57863bc7e8972fec8837fb
Diffstat (limited to 'drivers/input/misc/Makefile')
-rw-r--r-- | drivers/input/misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile index 75946ee..eb73834 100644 --- a/drivers/input/misc/Makefile +++ b/drivers/input/misc/Makefile @@ -25,6 +25,7 @@ obj-$(CONFIG_INPUT_DM355EVM) += dm355evm_keys.o obj-$(CONFIG_INPUT_GPIO) += gpio_event.o gpio_matrix.o gpio_input.o gpio_output.o gpio_axis.o obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o +obj-$(CONFIG_INPUT_KEYCHORD) += keychord.o obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o obj-$(CONFIG_INPUT_M68K_BEEP) += m68kspkr.o obj-$(CONFIG_INPUT_MAX8925_ONKEY) += max8925_onkey.o |