mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 04:46:45 +07:00
[PATCH] airo : fix channel number in scan
this patch display the correct channel number with iwlist scan Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
3be034b68a
commit
1141455d5e
@ -6852,7 +6852,10 @@ static inline char *airo_translate_scan(struct net_device *dev,
|
||||
/* Add frequency */
|
||||
iwe.cmd = SIOCGIWFREQ;
|
||||
iwe.u.freq.m = le16_to_cpu(bss->dsChannel);
|
||||
iwe.u.freq.m = frequency_list[iwe.u.freq.m] * 100000;
|
||||
/* iwe.u.freq.m containt the channel (starting 1), our
|
||||
* frequency_list array start at index 0...
|
||||
*/
|
||||
iwe.u.freq.m = frequency_list[iwe.u.freq.m - 1] * 100000;
|
||||
iwe.u.freq.e = 1;
|
||||
current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_FREQ_LEN);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user