Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235748
b: refs/heads/master
c: 3460382
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Jan 31, 2011
1 parent 6fcce3f commit 1bc3388
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 5bb5572ab6cee2887d87ce1de433a44bba15a998
refs/heads/master: 34603829c46d3c23fac99b0d5528878602a81862
6 changes: 3 additions & 3 deletions trunk/drivers/staging/ath6kl/os/linux/wireless_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -2510,14 +2510,14 @@ ar6000_ioctl_siwscan(struct net_device *dev,
return -EIO;
if (wmi_probedSsid_cmd(ar->arWmi, 1, SPECIFIC_SSID_FLAG, req.essid_len, req.essid) != A_OK)
return -EIO;
ar->scanSpecificSsid = 1;
ar->scanSpecificSsid = TRUE;
}
else
{
if (ar->scanSpecificSsid) {
if (wmi_probedSsid_cmd(ar->arWmi, 1, DISABLE_SSID_FLAG, 0, NULL) != A_OK)
return -EIO;
ar->scanSpecificSsid = 0;
ar->scanSpecificSsid = FALSE;
}
}
}
Expand All @@ -2526,7 +2526,7 @@ ar6000_ioctl_siwscan(struct net_device *dev,
if (ar->scanSpecificSsid) {
if (wmi_probedSsid_cmd(ar->arWmi, 1, DISABLE_SSID_FLAG, 0, NULL) != A_OK)
return -EIO;
ar->scanSpecificSsid = 0;
ar->scanSpecificSsid = FALSE;
}
}
#endif
Expand Down

0 comments on commit 1bc3388

Please sign in to comment.