Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236892
b: refs/heads/master
c: fa287b8
h: refs/heads/master
v: v3
  • Loading branch information
Eliad Peller authored and Luciano Coelho committed Jan 24, 2011
1 parent bac9c12 commit dfe2dff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2354b9fdda6491c8476498b246ff7c48d324a07f
refs/heads/master: fa287b8f291d79f080182eb353d1c1f4f374ae87
22 changes: 12 additions & 10 deletions trunk/drivers/net/wireless/wl12xx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2266,19 +2266,21 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl,
memcmp(wl->bssid, bss_conf->bssid, ETH_ALEN)) {
memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);

ret = wl1271_cmd_build_null_data(wl);
if (ret < 0)
goto out;
if (!is_zero_ether_addr(wl->bssid)) {
ret = wl1271_cmd_build_null_data(wl);
if (ret < 0)
goto out;

ret = wl1271_build_qos_null_data(wl);
if (ret < 0)
goto out;
ret = wl1271_build_qos_null_data(wl);
if (ret < 0)
goto out;

/* filter out all packets not from this BSSID */
wl1271_configure_filters(wl, 0);
/* filter out all packets not from this BSSID */
wl1271_configure_filters(wl, 0);

/* Need to update the BSSID (for filtering etc) */
do_join = true;
/* Need to update the BSSID (for filtering etc) */
do_join = true;
}
}

if ((changed & BSS_CHANGED_ASSOC)) {
Expand Down

0 comments on commit dfe2dff

Please sign in to comment.