summaryrefslogtreecommitdiff
path: root/drivers/input/Makefile
diff options
context:
space:
mode:
authorDaniel Rosenberg <drosen@google.com>2014-05-07 16:52:10 -0700
committerJohn Stultz <john.stultz@linaro.org>2016-02-16 13:50:58 -0800
commitf0a8adb404f8be85a4958f0fad8e22fbcd49dabb (patch)
tree5ccf5cd7a0b4896817b32938e7cc88af89be59c3 /drivers/input/Makefile
parenta15b297cd1dec04d98320be646eb47b785ac0e4f (diff)
input: add keycombo, a general key combo driver.
Keycombo lets you provide a key up and key down function, and an optional time delay for key down. The driver will call the key down function after the specified key combo has been held for the speicified time delay. After you release the combo, if the key down has happened, it calls key up. Change-Id: I6a9a94e96a8f58fadd908fd1dc7944b9102a089f Signed-off-by: Daniel Rosenberg <drosen@google.com>
Diffstat (limited to 'drivers/input/Makefile')
-rw-r--r--drivers/input/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/Makefile b/drivers/input/Makefile
index f3749d52a18d..2a6d05ab9170 100644
--- a/drivers/input/Makefile
+++ b/drivers/input/Makefile
@@ -27,3 +27,5 @@ obj-$(CONFIG_INPUT_MISC) += misc/
obj-$(CONFIG_INPUT_APMPOWER) += apm-power.o
obj-$(CONFIG_INPUT_KEYRESET) += keyreset.o
+obj-$(CONFIG_INPUT_KEYCOMBO) += keycombo.o
+