summaryrefslogtreecommitdiff
path: root/package/kernel
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2011-08-14 23:36:45 +0000
committerJonas Gorski <jogo@openwrt.org>2011-08-14 23:36:45 +0000
commitb413f797cfcace585a258478a18e1d4bb1faca8e (patch)
tree2fdc8739ba13a85d6ae02741aab06f7f4a52c0d3 /package/kernel
parent44b272fd58b2460d16142f15307db198141edcba (diff)
downloadmtk-20170518-b413f797cfcace585a258478a18e1d4bb1faca8e.zip
mtk-20170518-b413f797cfcace585a258478a18e1d4bb1faca8e.tar.gz
mtk-20170518-b413f797cfcace585a258478a18e1d4bb1faca8e.tar.bz2
package/kernel: kmod-hid: can't mix and match DEPENDS:= and $(call SetDepends/...)
Since the SetDepends macro does a: DEPENDS:= ... it can't be used after setting DEPENDS:= explicitly, or it will clobber the previous value. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> SVN-Revision: 27983
Diffstat (limited to 'package/kernel')
-rw-r--r--package/kernel/modules/other.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk
index e67c41b..1e252e3 100644
--- a/package/kernel/modules/other.mk
+++ b/package/kernel/modules/other.mk
@@ -252,12 +252,11 @@ $(eval $(call KernelPackage,gpio-nxp-74hc164))
define KernelPackage/hid
SUBMENU:=$(OTHER_MENU)
TITLE:=HID Devices
- DEPENDS:=+kmod-input-evdev
KCONFIG:=CONFIG_HID
FILES:=$(LINUX_DIR)/drivers/hid/hid.ko
AUTOLOAD:=$(call AutoLoad,61,hid)
$(call SetDepends/hid)
- $(call AddDepends/input)
+ $(call AddDepends/input,+kmod-input-evdev)
endef
define KernelPackage/hid/description