diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-17 15:28:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-17 15:28:02 +0000 |
commit | 8ff9b93dfa4f658866cf53947438980b972c2700 (patch) | |
tree | fd15d6dcd724a2f495ff527e2f6694f3018b9841 /package/kernel/modules/other.mk | |
parent | c30405070c1f6a253b5f0403b6d68cb4b1f00455 (diff) | |
download | upstream-8ff9b93dfa4f658866cf53947438980b972c2700.tar.gz upstream-8ff9b93dfa4f658866cf53947438980b972c2700.tar.bz2 upstream-8ff9b93dfa4f658866cf53947438980b972c2700.zip |
kernel: remove obsolete CompareKernelPatchVer calls
SVN-Revision: 31775
Diffstat (limited to 'package/kernel/modules/other.mk')
-rw-r--r-- | package/kernel/modules/other.mk | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 1f61da831a..9e4559a9bb 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -44,14 +44,7 @@ define KernelPackage/bluetooth $(LINUX_DIR)/net/bluetooth/hidp/hidp.ko \ $(LINUX_DIR)/drivers/bluetooth/hci_uart.ko \ $(LINUX_DIR)/drivers/bluetooth/btusb.ko - ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.39)),1) - AUTOLOAD:=$(call AutoLoad,90,bluetooth rfcomm bnep hidp hci_uart btusb) - else - FILES+= \ - $(LINUX_DIR)/net/bluetooth/l2cap.ko \ - $(LINUX_DIR)/net/bluetooth/sco.ko - AUTOLOAD:=$(call AutoLoad,90,bluetooth l2cap sco rfcomm bnep hidp hci_uart btusb) - endif + AUTOLOAD:=$(call AutoLoad,90,bluetooth rfcomm bnep hidp hci_uart btusb) endef define KernelPackage/bluetooth/description @@ -922,11 +915,7 @@ define KernelPackage/serial-8250 ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.3)),1) FILES:=$(LINUX_DIR)/drivers/tty/serial/8250/8250.ko else - ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.38)),1) FILES:=$(LINUX_DIR)/drivers/tty/serial/8250.ko - else - FILES:=$(LINUX_DIR)/drivers/serial/8250.ko - endif endif endef |