From c9e1ebc790c040d29c65655b3a02b5cf32928358 Mon Sep 17 00:00:00 2001 From: Guohai Wang Date: Tue, 25 Jun 2019 15:27:58 +0800 Subject: [PATCH] input: Add IR decode driver Change-Id: I7e6f36b70fd1f5356ad64cad9a0b9f2aab18c2b1 Signed-off-by: Guohai Wang Reviewed-by: Zhangbin Tong --- drivers/input/Kconfig | 2 ++ drivers/input/Makefile | 1 + 2 files changed, 3 insertions(+) diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index 1efd3154b68d..31a41c147f59 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -197,6 +197,8 @@ source "drivers/input/tablet/Kconfig" source "drivers/input/touchscreen/Kconfig" +source "drivers/input/remotectl/Kconfig" + source "drivers/input/misc/Kconfig" source "drivers/input/rmi4/Kconfig" diff --git a/drivers/input/Makefile b/drivers/input/Makefile index e35650930371..c03a47c073dc 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -24,6 +24,7 @@ obj-$(CONFIG_INPUT_MOUSE) += mouse/ obj-$(CONFIG_INPUT_JOYSTICK) += joystick/ obj-$(CONFIG_INPUT_TABLET) += tablet/ obj-$(CONFIG_INPUT_TOUCHSCREEN) += touchscreen/ +obj-$(CONFIG_ROCKCHIP_REMOTECTL)+= remotectl/ obj-$(CONFIG_INPUT_MISC) += misc/ obj-$(CONFIG_INPUT_APMPOWER) += apm-power.o