aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/Kconfig
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-10-17 03:42:34 -0400
committerJohn W. Linville <linville@tuxdriver.com>2013-10-18 14:07:00 -0400
commitfe7ef7c60c33fd339f40320fae76bc56d368dae5 (patch)
treeec3d4ccfce6ac49150d3e0560776093fae062791 /drivers/net/wireless/rt2x00/Kconfig
parent0b0ee990f402b357422cc7c5cc12915490610e3e (diff)
rt2x00: rt2800pci: move SoC specific code into a separate module
The PCI and SoC specific drivers are using separate code now so it is not reasonable to use the same module for both drivers anymore. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/Kconfig')
-rw-r--r--drivers/net/wireless/rt2x00/Kconfig21
1 files changed, 18 insertions, 3 deletions
diff --git a/drivers/net/wireless/rt2x00/Kconfig b/drivers/net/wireless/rt2x00/Kconfig
index e86324931b63..006b8bcb2e31 100644
--- a/drivers/net/wireless/rt2x00/Kconfig
+++ b/drivers/net/wireless/rt2x00/Kconfig
@@ -58,12 +58,11 @@ config RT61PCI
58 58
59config RT2800PCI 59config RT2800PCI
60 tristate "Ralink rt27xx/rt28xx/rt30xx (PCI/PCIe/PCMCIA) support" 60 tristate "Ralink rt27xx/rt28xx/rt30xx (PCI/PCIe/PCMCIA) support"
61 depends on PCI || SOC_RT288X || SOC_RT305X 61 depends on PCI
62 select RT2800_LIB 62 select RT2800_LIB
63 select RT2800_LIB_MMIO 63 select RT2800_LIB_MMIO
64 select RT2X00_LIB_MMIO 64 select RT2X00_LIB_MMIO
65 select RT2X00_LIB_PCI if PCI 65 select RT2X00_LIB_PCI
66 select RT2X00_LIB_SOC if SOC_RT288X || SOC_RT305X
67 select RT2X00_LIB_FIRMWARE 66 select RT2X00_LIB_FIRMWARE
68 select RT2X00_LIB_CRYPTO 67 select RT2X00_LIB_CRYPTO
69 select CRC_CCITT 68 select CRC_CCITT
@@ -200,6 +199,22 @@ config RT2800USB_UNKNOWN
200 199
201endif 200endif
202 201
202config RT2800SOC
203 tristate "Ralink WiSoC support"
204 depends on SOC_RT288X || SOC_RT305X
205 select RT2X00_LIB_SOC
206 select RT2X00_LIB_MMIO
207 select RT2X00_LIB_CRYPTO
208 select RT2X00_LIB_FIRMWARE
209 select RT2800_LIB
210 select RT2800_LIB_MMIO
211 ---help---
212 This adds support for Ralink WiSoC devices.
213 Supported chips: RT2880, RT3050, RT3052, RT3350, RT3352.
214
215 When compiled as a module, this driver will be called rt2800soc.
216
217
203config RT2800_LIB 218config RT2800_LIB
204 tristate 219 tristate
205 220