diff options
author | John Crispin <blogic@openwrt.org> | 2015-05-23 15:28:26 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-05-23 15:28:26 +0000 |
commit | 815d90644f50d161ed1898901f8eb6d4e2e6657c (patch) | |
tree | 07d4ad299c6be923c39231378fcf4d78c14ffcb6 | |
parent | 84a05ba6912049e222e2ab5ba8a076655ed10258 (diff) | |
download | master-187ad058-815d90644f50d161ed1898901f8eb6d4e2e6657c.tar.gz master-187ad058-815d90644f50d161ed1898901f8eb6d4e2e6657c.tar.bz2 master-187ad058-815d90644f50d161ed1898901f8eb6d4e2e6657c.zip |
modules/usb: cleanup remove old module names
delete cases for Kernel <3.10 (nop-usb-xceiv), <3.12 (phy-nop)
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45733 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/linux/modules/usb.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 589894bcd1..f3c84e6f10 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -103,18 +103,8 @@ define KernelPackage/usb-phy-nop TITLE:=Support for USB NOP transceiver KCONFIG:=CONFIG_NOP_USB_XCEIV HIDDEN:=1 -ifneq ($(wildcard $(LINUX_DIR)/drivers/usb/phy/phy-generic.ko),) FILES:=$(LINUX_DIR)/drivers/usb/phy/phy-generic.ko AUTOLOAD:=$(call AutoLoad,43,phy-generic) -else -ifneq ($(wildcard $(LINUX_DIR)/drivers/usb/phy/phy-nop.ko),) - FILES:=$(LINUX_DIR)/drivers/usb/phy/phy-nop.ko - AUTOLOAD:=$(call AutoLoad,43,phy-nop) -else - FILES:=$(LINUX_DIR)/drivers/usb/otg/nop-usb-xceiv.ko - AUTOLOAD:=$(call AutoLoad,43,nop-usb-xceiv) -endif -endif $(call AddDepends/usb) endef |