Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323063
b: refs/heads/master
c: ed205b3
h: refs/heads/master
i:
  323061: 90b0c8d
  323059: 8b874a6
  323055: 64d7063
v: v3
  • Loading branch information
Hante Meuleman authored and John W. Linville committed Sep 12, 2012
1 parent 7faafdc commit 78e1c59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: 022e1d0680c7b4366017393417b8758be5abcee8
refs/heads/master: ed205b361956c96e0d8c09a8c9135a6a79cd9541
6 changes: 4 additions & 2 deletions trunk/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,10 @@ static void wl_iscan_prep(struct brcmf_scan_params_le *params_le,
params_le->active_time = cpu_to_le32(-1);
params_le->passive_time = cpu_to_le32(-1);
params_le->home_time = cpu_to_le32(-1);
if (ssid && ssid->SSID_len)
memcpy(&params_le->ssid_le, ssid, sizeof(struct brcmf_ssid));
if (ssid && ssid->SSID_len) {
params_le->ssid_le.SSID_len = cpu_to_le32(ssid->SSID_len);
memcpy(&params_le->ssid_le.SSID, ssid->SSID, ssid->SSID_len);
}
}

static s32
Expand Down

0 comments on commit 78e1c59

Please sign in to comment.