From: Stijn Tintel Date: Sun, 24 Feb 2019 22:49:39 +0000 (+0200) Subject: kernel: fix kmod-input-touchscreen-ads7846 deps X-Git-Tag: v19.07.0-rc1~1223 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=02cd7f8b7a44f1715706dc63d70b5ffbac36200a kernel: fix kmod-input-touchscreen-ads7846 deps On targets that don't have input support enabled in the kernel config, building kmod-input-touchscreen-ads7846 fails due to a missing dependency on kmod-input-core. Add the dependency to fix this. Fixes: 77a54bbf13bf ("kernel: add kmod-input-touchscreen-ads7846") Reported-by: Hannu Nyman Signed-off-by: Stijn Tintel --- diff --git a/package/kernel/linux/modules/input.mk b/package/kernel/linux/modules/input.mk index 76b4f40bdd..99257b6725 100644 --- a/package/kernel/linux/modules/input.mk +++ b/package/kernel/linux/modules/input.mk @@ -176,7 +176,7 @@ $(eval $(call KernelPackage,input-matrixkmap)) define KernelPackage/input-touchscreen-ads7846 SUBMENU:=$(INPUT_MODULES_MENU) TITLE:=ADS7846/TSC2046/AD7873 and AD(S)7843 based touchscreens - DEPENDS:=+kmod-hwmon-core +kmod-spi-bitbang + DEPENDS:=+kmod-hwmon-core +kmod-input-core +kmod-spi-bitbang KCONFIG:= \ CONFIG_INPUT_TOUCHSCREEN=y \ CONFIG_TOUCHSCREEN_PROPERTIES=y \