diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2010-10-10 21:11:02 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-11 15:04:24 -0400 |
commit | e5c407f970ea2977600eb54cf4cc8a67a44fefeb (patch) | |
tree | 47c2b4de88a3633e29ee87a2a0eb50874b35ee1c /drivers/net/wireless/b43/phy_n.c | |
parent | a656b6a9665dce09a8f273091f1b4aa3d5cec721 (diff) |
b43: N-PHY: store info about current channel's type
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/phy_n.c')
-rw-r--r-- | drivers/net/wireless/b43/phy_n.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 6ca41a09fec..789d21c5413 100644 --- a/drivers/net/wireless/b43/phy_n.c +++ b/drivers/net/wireless/b43/phy_n.c | |||
@@ -74,6 +74,13 @@ static void b43_nphy_rf_control_override(struct b43_wldev *dev, u16 field, | |||
74 | static void b43_nphy_rf_control_intc_override(struct b43_wldev *dev, u8 field, | 74 | static void b43_nphy_rf_control_intc_override(struct b43_wldev *dev, u8 field, |
75 | u16 value, u8 core); | 75 | u16 value, u8 core); |
76 | 76 | ||
77 | static inline bool b43_channel_type_is_40mhz( | ||
78 | enum nl80211_channel_type channel_type) | ||
79 | { | ||
80 | return (channel_type == NL80211_CHAN_HT40MINUS || | ||
81 | channel_type == NL80211_CHAN_HT40PLUS); | ||
82 | } | ||
83 | |||
77 | static inline bool b43_empty_chanspec(struct b43_chanspec *chanspec) | 84 | static inline bool b43_empty_chanspec(struct b43_chanspec *chanspec) |
78 | { | 85 | { |
79 | return !chanspec->channel && !chanspec->sideband && | 86 | return !chanspec->channel && !chanspec->sideband && |
@@ -3404,10 +3411,9 @@ static int b43_nphy_set_channel(struct b43_wldev *dev, | |||
3404 | 3411 | ||
3405 | nphy->radio_chanspec.channel = channel->hw_value; | 3412 | nphy->radio_chanspec.channel = channel->hw_value; |
3406 | 3413 | ||
3407 | /* | 3414 | if (b43_channel_type_is_40mhz(phy->channel_type) != |
3408 | if (chanspec.b_width != nphy->b_width) | 3415 | b43_channel_type_is_40mhz(channel_type)) |
3409 | ; TODO: BMAC BW Set (chanspec.b_width) | 3416 | ; /* TODO: BMAC BW Set (channel_type) */ |
3410 | */ | ||
3411 | 3417 | ||
3412 | if (channel_type == NL80211_CHAN_HT40PLUS) | 3418 | if (channel_type == NL80211_CHAN_HT40PLUS) |
3413 | b43_phy_set(dev, B43_NPHY_RXCTL, | 3419 | b43_phy_set(dev, B43_NPHY_RXCTL, |