diff options
author | Gábor Stefanik <netrolller.3d@gmail.com> | 2009-08-27 16:49:49 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-28 14:40:55 -0400 |
commit | 64e368bf9c3690eebd4b3a5cc243f39e902ecdd1 (patch) | |
tree | f39751877ea511aa2ecc640278c6560be0301c06 /drivers/net/wireless/b43/phy_common.h | |
parent | 867b2efe68b6bb929e3bd1c6d699ba61ff2cf847 (diff) |
b43: Implement antenna diversity support for LP-PHY
The A/G-PHY changes are fallout fixes from the enum change,
which in turn allows the LP-PHY code to be much simpler.
The antenna_to_phyctl change is a fix for a potential
existing bug that this patch may otherwise trigger.
Signed-off-by: Gábor Stefanik <netrolller.3d@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/phy_common.h')
-rw-r--r-- | drivers/net/wireless/b43/phy_common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/b43/phy_common.h b/drivers/net/wireless/b43/phy_common.h index b47a0f55c0b6..28e384633c34 100644 --- a/drivers/net/wireless/b43/phy_common.h +++ b/drivers/net/wireless/b43/phy_common.h | |||
@@ -49,11 +49,11 @@ enum b43_interference_mitigation { | |||
49 | 49 | ||
50 | /* Antenna identifiers */ | 50 | /* Antenna identifiers */ |
51 | enum { | 51 | enum { |
52 | B43_ANTENNA0, /* Antenna 0 */ | 52 | B43_ANTENNA0 = 0, /* Antenna 0 */ |
53 | B43_ANTENNA1, /* Antenna 0 */ | 53 | B43_ANTENNA1 = 1, /* Antenna 1 */ |
54 | B43_ANTENNA_AUTO1, /* Automatic, starting with antenna 1 */ | 54 | B43_ANTENNA_AUTO0 = 2, /* Automatic, starting with antenna 0 */ |
55 | B43_ANTENNA_AUTO0, /* Automatic, starting with antenna 0 */ | 55 | B43_ANTENNA_AUTO1 = 3, /* Automatic, starting with antenna 1 */ |
56 | B43_ANTENNA2, | 56 | B43_ANTENNA2 = 4, |
57 | B43_ANTENNA3 = 8, | 57 | B43_ANTENNA3 = 8, |
58 | 58 | ||
59 | B43_ANTENNA_AUTO = B43_ANTENNA_AUTO0, | 59 | B43_ANTENNA_AUTO = B43_ANTENNA_AUTO0, |