diff options
| author | matthieu castet <castet.matthieu@free.fr> | 2005-09-12 17:31:39 -0400 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-14 08:24:22 -0400 |
| commit | 1141455d5e29e47004ad61e0fc385cb612d4e51c (patch) | |
| tree | 6dd7e7e2e5e948a3b8fb817240204e0fbd450d22 /drivers/net/wireless/airo.c | |
| parent | 3be034b68acab61d6878431593203fc1b10d10ab (diff) | |
[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>
Diffstat (limited to 'drivers/net/wireless/airo.c')
| -rw-r--r-- | drivers/net/wireless/airo.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 2be65d308fbe..06998c2240d9 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
| @@ -6852,7 +6852,10 @@ static inline char *airo_translate_scan(struct net_device *dev, | |||
| 6852 | /* Add frequency */ | 6852 | /* Add frequency */ |
| 6853 | iwe.cmd = SIOCGIWFREQ; | 6853 | iwe.cmd = SIOCGIWFREQ; |
| 6854 | iwe.u.freq.m = le16_to_cpu(bss->dsChannel); | 6854 | iwe.u.freq.m = le16_to_cpu(bss->dsChannel); |
| 6855 | iwe.u.freq.m = frequency_list[iwe.u.freq.m] * 100000; | 6855 | /* iwe.u.freq.m containt the channel (starting 1), our |
| 6856 | * frequency_list array start at index 0... | ||
| 6857 | */ | ||
| 6858 | iwe.u.freq.m = frequency_list[iwe.u.freq.m - 1] * 100000; | ||
| 6856 | iwe.u.freq.e = 1; | 6859 | iwe.u.freq.e = 1; |
| 6857 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_FREQ_LEN); | 6860 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_FREQ_LEN); |
| 6858 | 6861 | ||
