diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:12 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:12 +0000 |
commit | 219b7c91d63f234bf76b0bfeaf3f66f9352c3a8b (patch) | |
tree | a2a99fab080692e9b7f8b259591531700afc4184 /package/mac80211/Makefile | |
parent | 5636037cff0f19ceb15c88999bbd1a77ada0d6fe (diff) | |
download | upstream-219b7c91d63f234bf76b0bfeaf3f66f9352c3a8b.tar.gz upstream-219b7c91d63f234bf76b0bfeaf3f66f9352c3a8b.tar.bz2 upstream-219b7c91d63f234bf76b0bfeaf3f66f9352c3a8b.zip |
mac80211: add missing DRIVER_11N_SUPPORT selects
Multiple drivers were missing their DRIVER_11N_SUPPORT despite
supporting 11N capable cards.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 35711
Diffstat (limited to 'package/mac80211/Makefile')
-rw-r--r-- | package/mac80211/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index fc76f9871d..49b2a5b3db 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -636,7 +636,7 @@ endef define KernelPackage/iwlagn $(call KernelPackage/mac80211/Default) - DEPENDS:= +kmod-mac80211 @PCI_SUPPORT + DEPENDS:= +kmod-mac80211 @PCI_SUPPORT +@DRIVER_11N_SUPPORT TITLE:=Intel AGN Wireless support FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/iwlwifi/iwlwifi.ko AUTOLOAD:=$(call AutoLoad,60,iwlwifi) @@ -762,7 +762,7 @@ endef define KernelPackage/iwl4965 $(call KernelPackage/mac80211/Default) - DEPENDS:= +kmod-mac80211 +kmod-iwl-legacy + DEPENDS:= +kmod-mac80211 +kmod-iwl-legacy +@DRIVER_11N_SUPPORT TITLE:=Intel iwl4965 Wireless support FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/iwlegacy/iwl4965.ko AUTOLOAD:=$(call AutoLoad,61,iwl4965) @@ -777,7 +777,7 @@ define KernelPackage/mwl8k $(call KernelPackage/mac80211/Default) TITLE:=Driver for Marvell TOPDOG 802.11 Wireless cards URL:=http://wireless.kernel.org/en/users/Drivers/mwl8k - DEPENDS+= @PCI_SUPPORT +kmod-mac80211 + DEPENDS+= @PCI_SUPPORT +kmod-mac80211 +@DRIVER_11N_SUPPORT FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/mwl8k.ko AUTOLOAD:=$(call AutoLoad,27,mwl8k) endef |