aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/b43/Kconfig13
-rw-r--r--drivers/net/wireless/b43/Makefile8
-rw-r--r--drivers/net/wireless/b43/main.c4
-rw-r--r--drivers/net/wireless/b43/phy_common.c2
4 files changed, 14 insertions, 13 deletions
diff --git a/drivers/net/wireless/b43/Kconfig b/drivers/net/wireless/b43/Kconfig
index 0a00d42642cd..47033f6a1c2b 100644
--- a/drivers/net/wireless/b43/Kconfig
+++ b/drivers/net/wireless/b43/Kconfig
@@ -86,15 +86,16 @@ config B43_PIO
86 select SSB_BLOCKIO 86 select SSB_BLOCKIO
87 default y 87 default y
88 88
89config B43_NPHY 89config B43_PHY_N
90 bool "Pre IEEE 802.11n support (BROKEN)" 90 bool "Support for 802.11n (N-PHY) devices (EXPERIMENTAL)"
91 depends on B43 && EXPERIMENTAL && BROKEN 91 depends on B43 && EXPERIMENTAL
92 ---help--- 92 ---help---
93 Support for the IEEE 802.11n draft. 93 Support for the N-PHY.
94 94
95 THIS IS BROKEN AND DOES NOT WORK YET. 95 This enables support for devices with N-PHY revision up to 2.
96 96
97 SAY N. 97 Say N if you expect high stability and performance. Saying Y will not
98 affect other devices support and may provide support for basic needs.
98 99
99config B43_PHY_LP 100config B43_PHY_LP
100 bool "Support for low-power (LP-PHY) devices (EXPERIMENTAL)" 101 bool "Support for low-power (LP-PHY) devices (EXPERIMENTAL)"
diff --git a/drivers/net/wireless/b43/Makefile b/drivers/net/wireless/b43/Makefile
index 69d4af09a6cb..cef334a8c669 100644
--- a/drivers/net/wireless/b43/Makefile
+++ b/drivers/net/wireless/b43/Makefile
@@ -1,12 +1,12 @@
1b43-y += main.o 1b43-y += main.o
2b43-y += tables.o 2b43-y += tables.o
3b43-$(CONFIG_B43_NPHY) += tables_nphy.o 3b43-$(CONFIG_B43_PHY_N) += tables_nphy.o
4b43-$(CONFIG_B43_NPHY) += radio_2055.o 4b43-$(CONFIG_B43_PHY_N) += radio_2055.o
5b43-$(CONFIG_B43_NPHY) += radio_2056.o 5b43-$(CONFIG_B43_PHY_N) += radio_2056.o
6b43-y += phy_common.o 6b43-y += phy_common.o
7b43-y += phy_g.o 7b43-y += phy_g.o
8b43-y += phy_a.o 8b43-y += phy_a.o
9b43-$(CONFIG_B43_NPHY) += phy_n.o 9b43-$(CONFIG_B43_PHY_N) += phy_n.o
10b43-$(CONFIG_B43_PHY_LP) += phy_lp.o 10b43-$(CONFIG_B43_PHY_LP) += phy_lp.o
11b43-$(CONFIG_B43_PHY_LP) += tables_lpphy.o 11b43-$(CONFIG_B43_PHY_LP) += tables_lpphy.o
12b43-y += sysfs.o 12b43-y += sysfs.o
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index 4d97aac38df0..9ae3f619e98d 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -4052,7 +4052,7 @@ static int b43_phy_versioning(struct b43_wldev *dev)
4052 if (phy_rev > 9) 4052 if (phy_rev > 9)
4053 unsupported = 1; 4053 unsupported = 1;
4054 break; 4054 break;
4055#ifdef CONFIG_B43_NPHY 4055#ifdef CONFIG_B43_PHY_N
4056 case B43_PHYTYPE_N: 4056 case B43_PHYTYPE_N:
4057 if (phy_rev > 2) 4057 if (phy_rev > 2)
4058 unsupported = 1; 4058 unsupported = 1;
@@ -5097,7 +5097,7 @@ static void b43_print_driverinfo(void)
5097#ifdef CONFIG_B43_PCMCIA 5097#ifdef CONFIG_B43_PCMCIA
5098 feat_pcmcia = "M"; 5098 feat_pcmcia = "M";
5099#endif 5099#endif
5100#ifdef CONFIG_B43_NPHY 5100#ifdef CONFIG_B43_PHY_N
5101 feat_nphy = "N"; 5101 feat_nphy = "N";
5102#endif 5102#endif
5103#ifdef CONFIG_B43_LEDS 5103#ifdef CONFIG_B43_LEDS
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c
index 412f1b64cc82..b5c5ce94d3fd 100644
--- a/drivers/net/wireless/b43/phy_common.c
+++ b/drivers/net/wireless/b43/phy_common.c
@@ -50,7 +50,7 @@ int b43_phy_allocate(struct b43_wldev *dev)
50 phy->ops = &b43_phyops_g; 50 phy->ops = &b43_phyops_g;
51 break; 51 break;
52 case B43_PHYTYPE_N: 52 case B43_PHYTYPE_N:
53#ifdef CONFIG_B43_NPHY 53#ifdef CONFIG_B43_PHY_N
54 phy->ops = &b43_phyops_n; 54 phy->ops = &b43_phyops_n;
55#endif 55#endif
56 break; 56 break;