Commit 418378fe authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville

b43: add config for (en|dis)abling G-PHY support

This allows new devices users to save some space.
Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent bba4d409
...@@ -122,6 +122,15 @@ config B43_PIO ...@@ -122,6 +122,15 @@ config B43_PIO
select SSB_BLOCKIO select SSB_BLOCKIO
default y default y
config B43_PHY_G
bool "Support for G-PHY (802.11g) devices"
depends on B43 && B43_SSB
default y
---help---
This PHY type can be found in the following chipsets:
PCI: BCM4306, BCM4311, BCM4318
SoC: BCM4712, BCM5352E
config B43_PHY_N config B43_PHY_N
bool "Support for 802.11n (N-PHY) devices" bool "Support for 802.11n (N-PHY) devices"
depends on B43 depends on B43
......
b43-y += main.o b43-y += main.o
b43-y += bus.o b43-y += bus.o
b43-y += tables.o b43-$(CONFIG_B43_PHY_G) += phy_a.o phy_g.o tables.o lo.o wa.o
b43-$(CONFIG_B43_PHY_N) += tables_nphy.o b43-$(CONFIG_B43_PHY_N) += tables_nphy.o
b43-$(CONFIG_B43_PHY_N) += radio_2055.o b43-$(CONFIG_B43_PHY_N) += radio_2055.o
b43-$(CONFIG_B43_PHY_N) += radio_2056.o b43-$(CONFIG_B43_PHY_N) += radio_2056.o
b43-$(CONFIG_B43_PHY_N) += radio_2057.o b43-$(CONFIG_B43_PHY_N) += radio_2057.o
b43-y += phy_common.o b43-y += phy_common.o
b43-y += phy_g.o
b43-y += phy_a.o
b43-$(CONFIG_B43_PHY_N) += phy_n.o b43-$(CONFIG_B43_PHY_N) += phy_n.o
b43-$(CONFIG_B43_PHY_LP) += phy_lp.o b43-$(CONFIG_B43_PHY_LP) += phy_lp.o
b43-$(CONFIG_B43_PHY_LP) += tables_lpphy.o b43-$(CONFIG_B43_PHY_LP) += tables_lpphy.o
...@@ -17,8 +15,6 @@ b43-$(CONFIG_B43_PHY_HT) += radio_2059.o ...@@ -17,8 +15,6 @@ b43-$(CONFIG_B43_PHY_HT) += radio_2059.o
b43-$(CONFIG_B43_PHY_LCN) += phy_lcn.o tables_phy_lcn.o b43-$(CONFIG_B43_PHY_LCN) += phy_lcn.o tables_phy_lcn.o
b43-y += sysfs.o b43-y += sysfs.o
b43-y += xmit.o b43-y += xmit.o
b43-y += lo.o
b43-y += wa.o
b43-y += dma.o b43-y += dma.o
b43-y += pio.o b43-y += pio.o
b43-y += rfkill.o b43-y += rfkill.o
......
...@@ -4306,10 +4306,12 @@ static int b43_phy_versioning(struct b43_wldev *dev) ...@@ -4306,10 +4306,12 @@ static int b43_phy_versioning(struct b43_wldev *dev)
phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT; phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
phy_rev = (tmp & B43_PHYVER_VERSION); phy_rev = (tmp & B43_PHYVER_VERSION);
switch (phy_type) { switch (phy_type) {
#ifdef CONFIG_B43_PHY_G
case B43_PHYTYPE_G: case B43_PHYTYPE_G:
if (phy_rev > 9) if (phy_rev > 9)
unsupported = 1; unsupported = 1;
break; break;
#endif
#ifdef CONFIG_B43_PHY_N #ifdef CONFIG_B43_PHY_N
case B43_PHYTYPE_N: case B43_PHYTYPE_N:
if (phy_rev > 9) if (phy_rev > 9)
......
...@@ -46,7 +46,9 @@ int b43_phy_allocate(struct b43_wldev *dev) ...@@ -46,7 +46,9 @@ int b43_phy_allocate(struct b43_wldev *dev)
switch (phy->type) { switch (phy->type) {
case B43_PHYTYPE_G: case B43_PHYTYPE_G:
#ifdef CONFIG_B43_PHY_G
phy->ops = &b43_phyops_g; phy->ops = &b43_phyops_g;
#endif
break; break;
case B43_PHYTYPE_N: case B43_PHYTYPE_N:
#ifdef CONFIG_B43_PHY_N #ifdef CONFIG_B43_PHY_N
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment