Kconfig (77148625e10d0fda50d05e92d199c0df17b66e9a) | Kconfig (a0b907ee2a71052fefdf6151764095f3f97b3275) |
---|---|
1config ATH5K 2 tristate "Atheros 5xxx wireless cards support" | 1config ATH5K 2 tristate "Atheros 5xxx wireless cards support" |
3 depends on PCI && MAC80211 | 3 depends on (PCI || ATHEROS_AR231X) && MAC80211 |
4 select MAC80211_LEDS 5 select LEDS_CLASS 6 select NEW_LEDS 7 select AVERAGE | 4 select MAC80211_LEDS 5 select LEDS_CLASS 6 select NEW_LEDS 7 select AVERAGE |
8 select ATH5K_AHB if (ATHEROS_AR231X && !PCI) 9 select ATH5K_PCI if (!ATHEROS_AR231X && PCI) |
|
8 ---help--- 9 This module adds support for wireless adapters based on 10 Atheros 5xxx chipset. 11 12 Currently the following chip versions are supported: 13 14 MAC: AR5211 AR5212 15 PHY: RF5111/2111 RF5112/2112 RF5413/2413 --- 17 unchanged lines hidden (view full) --- 33 You will get access to files under: 34 /sys/kernel/debug/ath5k/phy0/ 35 36 To enable debug, pass the debug level to the debug module 37 parameter. For example: 38 39 modprobe ath5k debug=0x00000400 40 | 10 ---help--- 11 This module adds support for wireless adapters based on 12 Atheros 5xxx chipset. 13 14 Currently the following chip versions are supported: 15 16 MAC: AR5211 AR5212 17 PHY: RF5111/2111 RF5112/2112 RF5413/2413 --- 17 unchanged lines hidden (view full) --- 35 You will get access to files under: 36 /sys/kernel/debug/ath5k/phy0/ 37 38 To enable debug, pass the debug level to the debug module 39 parameter. For example: 40 41 modprobe ath5k debug=0x00000400 42 |
43config ATH5K_AHB 44 bool "Atheros 5xxx AHB bus support" 45 depends on (ATHEROS_AR231X && !PCI) 46 ---help--- 47 This adds support for WiSoC type chipsets of the 5xxx Atheros 48 family. 49 50config ATH5K_PCI 51 bool "Atheros 5xxx PCI bus support" 52 depends on (!ATHEROS_AR231X && PCI) 53 ---help--- 54 This adds support for PCI type chipsets of the 5xxx Atheros 55 family. |
|