|
@@ -3260,31 +3260,6 @@ ieee80211_sta_scan_result(struct net_device *dev,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- do {
|
|
|
|
- char *buf;
|
|
|
|
-
|
|
|
|
- buf = kmalloc(100, GFP_ATOMIC);
|
|
|
|
- if (!buf)
|
|
|
|
- break;
|
|
|
|
-
|
|
|
|
- memset(&iwe, 0, sizeof(iwe));
|
|
|
|
- iwe.cmd = IWEVCUSTOM;
|
|
|
|
- sprintf(buf, "bcn_int=%d", bss->beacon_int);
|
|
|
|
- iwe.u.data.length = strlen(buf);
|
|
|
|
- current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe,
|
|
|
|
- buf);
|
|
|
|
-
|
|
|
|
- memset(&iwe, 0, sizeof(iwe));
|
|
|
|
- iwe.cmd = IWEVCUSTOM;
|
|
|
|
- sprintf(buf, "capab=0x%04x", bss->capability);
|
|
|
|
- iwe.u.data.length = strlen(buf);
|
|
|
|
- current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe,
|
|
|
|
- buf);
|
|
|
|
-
|
|
|
|
- kfree(buf);
|
|
|
|
- break;
|
|
|
|
- } while (0);
|
|
|
|
-
|
|
|
|
return current_ev;
|
|
return current_ev;
|
|
}
|
|
}
|
|
|
|
|