diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-06-13 10:20:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-17 14:22:20 -0400 |
commit | d7520b1d2a9ffae94323ffac9dc37d92f656051f (patch) | |
tree | 3e970b184dd8f6e8c37ca36e61dfbc29e5ae0a64 /drivers/net/wireless/b43/main.c | |
parent | 443c1a24710ce151874acdca7efb47622c098e80 (diff) |
b43: HT-PHY: add place for writing HT PHY support
This is totally broken plus we do not have specs for HT PHY yet. Just
introduce place for writing driver if we discover anything.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/main.c')
-rw-r--r-- | drivers/net/wireless/b43/main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c index 7aed9a0eabc4..acee7b6af29a 100644 --- a/drivers/net/wireless/b43/main.c +++ b/drivers/net/wireless/b43/main.c | |||
@@ -4097,6 +4097,12 @@ static int b43_phy_versioning(struct b43_wldev *dev) | |||
4097 | unsupported = 1; | 4097 | unsupported = 1; |
4098 | break; | 4098 | break; |
4099 | #endif | 4099 | #endif |
4100 | #ifdef CONFIG_B43_PHY_HT | ||
4101 | case B43_PHYTYPE_HT: | ||
4102 | if (phy_rev > 1) | ||
4103 | unsupported = 1; | ||
4104 | break; | ||
4105 | #endif | ||
4100 | default: | 4106 | default: |
4101 | unsupported = 1; | 4107 | unsupported = 1; |
4102 | }; | 4108 | }; |
@@ -4153,6 +4159,10 @@ static int b43_phy_versioning(struct b43_wldev *dev) | |||
4153 | if (radio_ver != 0x2062 && radio_ver != 0x2063) | 4159 | if (radio_ver != 0x2062 && radio_ver != 0x2063) |
4154 | unsupported = 1; | 4160 | unsupported = 1; |
4155 | break; | 4161 | break; |
4162 | case B43_PHYTYPE_HT: | ||
4163 | if (radio_ver != 0x2059) | ||
4164 | unsupported = 1; | ||
4165 | break; | ||
4156 | default: | 4166 | default: |
4157 | B43_WARN_ON(1); | 4167 | B43_WARN_ON(1); |
4158 | } | 4168 | } |