diff options
author | Dan Williams <dcbw@redhat.com> | 2007-05-25 23:23:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-11 14:28:45 -0400 |
commit | 123e0e044091ca35a4766b38ae15032f2d41bcd6 (patch) | |
tree | 4aa2c96fee17fe3fb3eceec948abef884e95659a /drivers/net/wireless/libertas/scan.c | |
parent | 0e8a5bd9502f709ddd1ea441ef0362fad3e4a4a1 (diff) |
[PATCH] libertas: sparse fixes
Fix various issues reported by sparse.
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/scan.c')
-rw-r--r-- | drivers/net/wireless/libertas/scan.c | 5 |
1 files changed, 2 insertions, 3 deletions
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 */ |