diff options
author | John Crispin <john@openwrt.org> | 2014-10-13 19:45:31 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-10-13 19:45:31 +0000 |
commit | 4b45695c9a190ec5abb283a683ce66c64bca71c6 (patch) | |
tree | 7de03516ccd5ca5c2807527fa5d9b152345294ae /target | |
parent | 06a849575d9c1be81b5b181081243695599b6352 (diff) | |
download | upstream-4b45695c9a190ec5abb283a683ce66c64bca71c6.tar.gz upstream-4b45695c9a190ec5abb283a683ce66c64bca71c6.tar.bz2 upstream-4b45695c9a190ec5abb283a683ce66c64bca71c6.zip |
at91: fix at91-adc dependencies
Error reported by buildbot:
Package kmod-at91-adc is missing dependencies for the following libraries:
input-core.ko
only compile tested
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 42893
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/at91/modules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/at91/modules.mk b/target/linux/at91/modules.mk index 4678b92646..7f98233eb5 100644 --- a/target/linux/at91/modules.mk +++ b/target/linux/at91/modules.mk @@ -38,7 +38,7 @@ $(eval $(call KernelPackage,pwm-atmel)) define KernelPackage/at91-adc SUBMENU:=$(OTHER_MENU) TITLE:=ADC on atmel SoC - DEPENDS:=@TARGET_at91 +kmod-iio-core + DEPENDS:=@TARGET_at91 +kmod-iio-core +kmod-input-core KCONFIG:=CONFIG_AT91_ADC FILES:=$(LINUX_DIR)/drivers/iio/adc/at91_adc.ko AUTOLOAD:=$(call AutoLoad,40,at91_adc) |