mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 10:01:56 +00:00
c869f77d6a
Add support for the simplest of MediaTek Wi-Fi devices - MT7601U. It is a single stream bgn chip with no bells or whistles. This driver is partially based on Felix's mt76 but IMHO it doesn't make sense to merge the two right now because MT7601U is a design somewhere between old Ralink devices and new Mediatek chips. There wouldn't be all that much code sharing with the devices mt76 supports. Situation may obviously change when someone decides to extend m76 with support for the more recent USB dongles. The driver supports only station mode. I'm hoping to add AP support when time allows. This driver sat on GitHub for quite a while and got some testing there: http://github.com/kuba-moo/mt7601u Signed-off-by: Jakub Kicinski <kubakici@wp.pl> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
65 lines
1.5 KiB
Makefile
65 lines
1.5 KiB
Makefile
#
|
|
# Makefile for the Linux Wireless network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_IPW2100) += ipw2x00/
|
|
obj-$(CONFIG_IPW2200) += ipw2x00/
|
|
|
|
obj-$(CONFIG_HERMES) += orinoco/
|
|
|
|
obj-$(CONFIG_AIRO) += airo.o
|
|
obj-$(CONFIG_AIRO_CS) += airo_cs.o airo.o
|
|
|
|
obj-$(CONFIG_ATMEL) += atmel.o
|
|
obj-$(CONFIG_PCI_ATMEL) += atmel_pci.o
|
|
obj-$(CONFIG_PCMCIA_ATMEL) += atmel_cs.o
|
|
|
|
obj-$(CONFIG_AT76C50X_USB) += at76c50x-usb.o
|
|
|
|
obj-$(CONFIG_PRISM54) += prism54/
|
|
|
|
obj-$(CONFIG_HOSTAP) += hostap/
|
|
obj-$(CONFIG_B43) += b43/
|
|
obj-$(CONFIG_B43LEGACY) += b43legacy/
|
|
obj-$(CONFIG_ZD1211RW) += zd1211rw/
|
|
obj-$(CONFIG_RTL8180) += rtl818x/
|
|
obj-$(CONFIG_RTL8187) += rtl818x/
|
|
obj-$(CONFIG_RTLWIFI) += rtlwifi/
|
|
|
|
# 16-bit wireless PCMCIA client drivers
|
|
obj-$(CONFIG_PCMCIA_RAYCS) += ray_cs.o
|
|
obj-$(CONFIG_PCMCIA_WL3501) += wl3501_cs.o
|
|
|
|
obj-$(CONFIG_USB_NET_RNDIS_WLAN) += rndis_wlan.o
|
|
|
|
obj-$(CONFIG_USB_ZD1201) += zd1201.o
|
|
obj-$(CONFIG_LIBERTAS) += libertas/
|
|
|
|
obj-$(CONFIG_LIBERTAS_THINFIRM) += libertas_tf/
|
|
|
|
obj-$(CONFIG_ADM8211) += adm8211.o
|
|
|
|
obj-$(CONFIG_MWL8K) += mwl8k.o
|
|
|
|
obj-$(CONFIG_IWLWIFI) += iwlwifi/
|
|
obj-$(CONFIG_IWLEGACY) += iwlegacy/
|
|
obj-$(CONFIG_RT2X00) += rt2x00/
|
|
|
|
obj-$(CONFIG_WL_MEDIATEK) += mediatek/
|
|
|
|
obj-$(CONFIG_P54_COMMON) += p54/
|
|
|
|
obj-$(CONFIG_ATH_CARDS) += ath/
|
|
|
|
obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o
|
|
|
|
obj-$(CONFIG_WL_TI) += ti/
|
|
|
|
obj-$(CONFIG_MWIFIEX) += mwifiex/
|
|
|
|
obj-$(CONFIG_BRCMFMAC) += brcm80211/
|
|
obj-$(CONFIG_BRCMSMAC) += brcm80211/
|
|
|
|
obj-$(CONFIG_CW1200) += cw1200/
|
|
obj-$(CONFIG_RSI_91X) += rsi/
|