forked from luck/tmp_suning_uos_patched
rndis_wlan: disable IWEVPMKIDCAND wireless event
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
a0f9ce2ac3
commit
21ec2d8d0f
@ -2821,14 +2821,16 @@ static void rndis_wlan_pmkid_cand_list_indication(struct usbnet *usbdev,
|
||||
return;
|
||||
|
||||
for (i = 0; i < le32_to_cpu(cand_list->num_candidates); i++) {
|
||||
struct iw_pmkid_cand pcand;
|
||||
union iwreq_data wrqu;
|
||||
struct ndis_80211_pmkid_candidate *cand =
|
||||
&cand_list->candidate_list[i];
|
||||
|
||||
devdbg(usbdev, "cand[%i]: flags: 0x%08x, bssid: %pM",
|
||||
i, le32_to_cpu(cand->flags), cand->bssid);
|
||||
|
||||
#if 0
|
||||
struct iw_pmkid_cand pcand;
|
||||
union iwreq_data wrqu;
|
||||
|
||||
memset(&pcand, 0, sizeof(pcand));
|
||||
if (le32_to_cpu(cand->flags) & 0x01)
|
||||
pcand.flags |= IW_PMKID_CAND_PREAUTH;
|
||||
@ -2839,6 +2841,7 @@ static void rndis_wlan_pmkid_cand_list_indication(struct usbnet *usbdev,
|
||||
wrqu.data.length = sizeof(pcand);
|
||||
wireless_send_event(usbdev->net, IWEVPMKIDCAND, &wrqu,
|
||||
(u8 *)&pcand);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user