Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79376
b: refs/heads/master
c: d5c71e4
h: refs/heads/master
v: v3
  • Loading branch information
Michael Buesch authored and David S. Miller committed Jan 28, 2008
1 parent 4e4ebe2 commit 2aae235
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ca08a965a6c251f9c9002c1a7a0316e63d4c28ec
refs/heads/master: d5c71e464170e823b5ae5fe7b3555f3c31694148
10 changes: 10 additions & 0 deletions trunk/drivers/net/wireless/b43/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ config B43_PCMCIA

If unsure, say N.

config B43_NPHY
bool "Pre IEEE 802.11n support (BROKEN)"
depends on B43 && EXPERIMENTAL && BROKEN
---help---
Support for the IEEE 802.11n draft.

THIS IS BROKEN AND DOES NOT WORK YET.

SAY N.

# This config option automatically enables b43 LEDS support,
# if it's possible.
config B43_LEDS
Expand Down
7 changes: 7 additions & 0 deletions trunk/drivers/net/wireless/b43/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ static const struct ssb_device_id b43_ssb_tbl[] = {
SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 7),
SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 9),
SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 10),
SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 11),
SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 13),
SSB_DEVTABLE_END
};
Expand Down Expand Up @@ -3053,6 +3054,12 @@ static int b43_phy_versioning(struct b43_wldev *dev)
if (phy_rev > 9)
unsupported = 1;
break;
#ifdef CONFIG_B43_NPHY
case B43_PHYTYPE_N:
if (phy_rev > 1)
unsupported = 1;
break;
#endif
default:
unsupported = 1;
};
Expand Down

0 comments on commit 2aae235

Please sign in to comment.