The patch titled atmel wireless: output signal strength information has been added to the -mm tree. Its filename is atmel-wireless-output-signal-strength-information.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: atmel wireless: output signal strength information From: Holden Karau <holden@xxxxxxxxxxxxx> Output signal strength information as part of iwlist scan - before it did not output any signal strength related information. Signed-off-by: Holden Karau <holden@xxxxxxxxxxxxx> Cc: Jean Tourrilhes <jt@xxxxxxxxxx> Cc: "John W. Linville" <linville@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/wireless/atmel.c | 8 ++++++++ 1 files changed, 8 insertions(+) diff -puN drivers/net/wireless/atmel.c~atmel-wireless-output-signal-strength-information drivers/net/wireless/atmel.c --- a/drivers/net/wireless/atmel.c~atmel-wireless-output-signal-strength-information +++ a/drivers/net/wireless/atmel.c @@ -2345,6 +2345,14 @@ static int atmel_get_scan(struct net_dev iwe.u.freq.e = 0; current_ev = iwe_stream_add_event(current_ev, extra + IW_SCAN_MAX_DATA, &iwe, IW_EV_FREQ_LEN); + /* Add quality statistics */ + iwe.cmd = IWEVQUAL; + iwe.u.qual.level = priv->BSSinfo[i].RSSI; + iwe.u.qual.qual = iwe.u.qual.level; + /* iwe.u.qual.noise = SOMETHING */ + current_ev = iwe_stream_add_event(current_ev, extra + IW_SCAN_MAX_DATA , &iwe, IW_EV_QUAL_LEN); + + iwe.cmd = SIOCGIWENCODE; if (priv->BSSinfo[i].UsingWEP) iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY; _ Patches currently in -mm which might be from holden@xxxxxxxxxxxxx are atmel-wireless-output-signal-strength-information.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html