diff options
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/libertas/ioctl.c | 3 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/scan.c | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/ioctl.c b/drivers/net/wireless/libertas/ioctl.c index a59d26ba6c70..4b145e3e7db1 100644 --- a/drivers/net/wireless/libertas/ioctl.c +++ b/drivers/net/wireless/libertas/ioctl.c | |||
@@ -297,6 +297,7 @@ static int wlan_bt_set_invert_ioctl(wlan_private * priv, struct ifreq *req) | |||
297 | */ | 297 | */ |
298 | static int wlan_bt_get_invert_ioctl(wlan_private * priv, struct ifreq *req) | 298 | static int wlan_bt_get_invert_ioctl(wlan_private * priv, struct ifreq *req) |
299 | { | 299 | { |
300 | struct iwreq *wrq = (struct iwreq *)req; | ||
300 | int ret; | 301 | int ret; |
301 | union { | 302 | union { |
302 | int id; | 303 | int id; |
@@ -311,7 +312,7 @@ static int wlan_bt_get_invert_ioctl(wlan_private * priv, struct ifreq *req) | |||
311 | (char *)¶m); | 312 | (char *)¶m); |
312 | 313 | ||
313 | if (ret == 0) | 314 | if (ret == 0) |
314 | req->ifr_data = (char *)(le32_to_cpu(param.id)); | 315 | wrq->u.param.value = le32_to_cpu(param.id); |
315 | else | 316 | else |
316 | return -EFAULT; | 317 | return -EFAULT; |
317 | 318 | ||
diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c index 3da1efdf1a0c..a1ab698088db 100644 --- a/drivers/net/wireless/libertas/scan.c +++ b/drivers/net/wireless/libertas/scan.c | |||
@@ -59,8 +59,8 @@ | |||
59 | //! Scan time specified in the channel TLV for each channel for active scans | 59 | //! Scan time specified in the channel TLV for each channel for active scans |
60 | #define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100 | 60 | #define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100 |
61 | 61 | ||
62 | const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | 62 | static const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; |
63 | const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; | 63 | static const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
64 | 64 | ||
65 | static inline void clear_bss_descriptor (struct bss_descriptor * bss) | 65 | static inline void clear_bss_descriptor (struct bss_descriptor * bss) |
66 | { | 66 | { |
@@ -1855,7 +1855,6 @@ int libertas_ret_80211_scan(wlan_private * priv, struct cmd_ds_command *resp) | |||
1855 | for (idx = 0; idx < pscan->nr_sets && bytesleft; idx++) { | 1855 | for (idx = 0; idx < pscan->nr_sets && bytesleft; idx++) { |
1856 | struct bss_descriptor new; | 1856 | struct bss_descriptor new; |
1857 | struct bss_descriptor * found = NULL; | 1857 | struct bss_descriptor * found = NULL; |
1858 | struct bss_descriptor * iter_bss = NULL; | ||
1859 | struct bss_descriptor * oldest = NULL; | 1858 | struct bss_descriptor * oldest = NULL; |
1860 | 1859 | ||
1861 | /* Process the data fields and IEs returned for this BSS */ | 1860 | /* Process the data fields and IEs returned for this BSS */ |