From: nbd Date: Sun, 8 Jun 2014 09:45:55 +0000 (+0000) Subject: brcm47xx: fix kmod-usb-brcm47xx build on legacy and mips74k subtargets X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=dff3ecca130d12067afdadc9694fe62e4430f8fd brcm47xx: fix kmod-usb-brcm47xx build on legacy and mips74k subtargets Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41052 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/brcm47xx/modules.mk b/target/linux/brcm47xx/modules.mk index 4dd5edb338..5738d6aa0d 100644 --- a/target/linux/brcm47xx/modules.mk +++ b/target/linux/brcm47xx/modules.mk @@ -13,9 +13,11 @@ define KernelPackage/usb-brcm47xx CONFIG_USB_HCD_BCMA \ CONFIG_USB_HCD_SSB FILES:= \ - $(LINUX_DIR)/drivers/usb/host/bcma-hcd.ko \ - $(LINUX_DIR)/drivers/usb/host/ssb-hcd.ko - AUTOLOAD:=$(call AutoLoad,19,bcma-hcd ssb-hcd,1) + $(if $(CONFIG_USB_HCD_BCMA),$(LINUX_DIR)/drivers/usb/host/bcma-hcd.ko) \ + $(if $(CONFIG_USB_HCD_SSB),$(LINUX_DIR)/drivers/usb/host/ssb-hcd.ko) + AUTOLOAD:=$(call AutoLoad,19, \ + $(if $(CONFIG_USB_HCD_BCMA),bcma-hcd) \ + $(if $(CONFIG_USB_HCD_SSB),ssb-hcd),1) $(call AddDepends/usb) endef