Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235595
b: refs/heads/master
c: d69a135
h: refs/heads/master
i:
  235593: 3fc8a91
  235591: 7374d64
v: v3
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Jan 20, 2011
1 parent aa0a69d commit 37f47c5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 56 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1b1d36b6e8df93b1ddba81c6b72f0c22be6ed4ef
refs/heads/master: d69a135806136ef26298116cc3fa08d14bb1d7d6
19 changes: 10 additions & 9 deletions trunk/drivers/staging/brcm80211/brcmfmac/wl_iw.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ wl_iw_get_range(struct net_device *dev,
wl_rateset_t rateset;
s8 *channels;
int error, i, k;
uint sf, ch;
uint ch;

int phytype;
int bw_cap = 0, sgi_tx = 0, nmode = 0;
Expand Down Expand Up @@ -530,11 +530,10 @@ wl_iw_get_range(struct net_device *dev,

ch = dtoh32(list->element[i]);
if (ch <= CH_MAX_2G_CHANNEL) {
sf = WF_CHAN_FACTOR_2_4_G;
range->freq[i].m = ieee80211_dsss_chan_to_freq(ch);
} else {
sf = WF_CHAN_FACTOR_5_G;
range->freq[i].m = wf_channel2mhz(ch, sf);
range->freq[i].m = ieee80211_ofdm_chan_to_freq(
WF_CHAN_FACTOR_5_G/2, ch);
}
range->freq[i].e = 6;
}
Expand Down Expand Up @@ -1540,9 +1539,10 @@ wl_iw_get_scan_prep(wl_scan_results_t *list,
iwe.u.freq.m = ieee80211_dsss_chan_to_freq(
CHSPEC_CHANNEL(bi->chanspec));
else
iwe.u.freq.m = wf_channel2mhz(
CHSPEC_CHANNEL(bi->chanspec),
WF_CHAN_FACTOR_5_G);
iwe.u.freq.m = ieee80211_ofdm_chan_to_freq(
WF_CHAN_FACTOR_5_G/2,
CHSPEC_CHANNEL(bi->chanspec));

iwe.u.freq.e = 6;
event =
IWE_STREAM_ADD_EVENT(info, event, end, &iwe,
Expand Down Expand Up @@ -1820,8 +1820,9 @@ wl_iw_iscan_get_scan(struct net_device *dev,
iwe.u.freq.m =
ieee80211_dsss_chan_to_freq(channel);
else
iwe.u.freq.m = wf_channel2mhz(channel,
WF_CHAN_FACTOR_5_G);
iwe.u.freq.m = ieee80211_ofdm_chan_to_freq(
WF_CHAN_FACTOR_5_G/2,
channel);

iwe.u.freq.e = 6;
event =
Expand Down
18 changes: 0 additions & 18 deletions trunk/drivers/staging/brcm80211/include/bcmwifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,22 +171,4 @@ extern chanspec_t wf_chspec_ctlchspec(chanspec_t chspec);
*/
extern int wf_mhz2channel(uint freq, uint start_factor);

/*
* Return the center frequency in MHz of the given channel and base frequency.
* The channel number is interpreted relative to the given base frequency.
*
* The valid channel range is [1, 14] in the 2.4 GHz band and [0, 200] otherwise.
* The base frequency is specified as (start_factor * 500 kHz).
* Constants WF_CHAN_FACTOR_2_4_G, WF_CHAN_FACTOR_5_G are defined for
* 2.4 GHz and 5 GHz bands.
* The channel range of [1, 14] is only checked for a start_factor of
* WF_CHAN_FACTOR_2_4_G (4814).
* Odd start_factors produce channels on .5 MHz boundaries, in which case
* the answer is rounded down to an integral MHz.
* -1 is returned for an out of range channel.
*
* Reference 802.11 REVma, section 17.3.8.3, and 802.11B section 18.4.6.2
*/
extern int wf_channel2mhz(uint channel, uint start_factor);

#endif /* _bcmwifi_h_ */
4 changes: 3 additions & 1 deletion trunk/drivers/staging/brcm80211/sys/wlc_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -6837,7 +6837,9 @@ prep_mac80211_status(struct wlc_info *wlc, d11rxhdr_t *rxh, struct sk_buff *p,
/* XXX Channel/badn needs to be filtered against whether we are single/dual band card */
if (channel > 14) {
rx_status->band = IEEE80211_BAND_5GHZ;
rx_status->freq = wf_channel2mhz(channel, WF_CHAN_FACTOR_5_G);
rx_status->freq = ieee80211_ofdm_chan_to_freq(
WF_CHAN_FACTOR_5_G/2, channel);

} else {
rx_status->band = IEEE80211_BAND_2GHZ;
rx_status->freq = ieee80211_dsss_chan_to_freq(channel);
Expand Down
27 changes: 0 additions & 27 deletions trunk/drivers/staging/brcm80211/util/bcmwifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,30 +161,3 @@ int wf_mhz2channel(uint freq, uint start_factor)
return ch;
}

/*
* Return the center frequency in MHz of the given channel and base frequency.
* The channel number is interpreted relative to the given base frequency.
*
* The valid channel range is [1, 14] in the 2.4 GHz band and [0, 200] otherwise.
* The base frequency is specified as (start_factor * 500 kHz).
* Constants WF_CHAN_FACTOR_2_4_G, WF_CHAN_FACTOR_4_G, and WF_CHAN_FACTOR_5_G
* are defined for 2.4 GHz, 4 GHz, and 5 GHz bands.
* The channel range of [1, 14] is only checked for a start_factor of
* WF_CHAN_FACTOR_2_4_G (4814 = 2407 * 2).
* Odd start_factors produce channels on .5 MHz boundaries, in which case
* the answer is rounded down to an integral MHz.
* -1 is returned for an out of range channel.
*
* Reference 802.11 REVma, section 17.3.8.3, and 802.11B section 18.4.6.2
*/
int wf_channel2mhz(uint ch, uint start_factor)
{
int freq;

if (ch > 200)
freq = -1;
else
freq = ch * 5 + start_factor / 2;

return freq;
}

0 comments on commit 37f47c5

Please sign in to comment.