[PATCH] libertas: sparse fixes

2007-06-12 Thread Linux Kernel Mailing List
Gitweb: 
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=123e0e044091ca35a4766b38ae15032f2d41bcd6
Commit: 123e0e044091ca35a4766b38ae15032f2d41bcd6
Parent: 0e8a5bd9502f709ddd1ea441ef0362fad3e4a4a1
Author: Dan Williams <[EMAIL PROTECTED]>
AuthorDate: Fri May 25 23:23:43 2007 -0400
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Mon Jun 11 14:28:45 2007 -0400

[PATCH] libertas: sparse fixes

Fix various issues reported by sparse.

Signed-off-by: Dan Williams <[EMAIL PROTECTED]>
Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/ioctl.c |3 ++-
 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 a59d26b..4b145e3 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)
  */
 static int wlan_bt_get_invert_ioctl(wlan_private * priv, struct ifreq *req)
 {
+   struct iwreq *wrq = (struct iwreq *)req;
int ret;
union {
int id;
@@ -311,7 +312,7 @@ static int wlan_bt_get_invert_ioctl(wlan_private * priv, 
struct ifreq *req)
(char *)¶m);
 
if (ret == 0)
-   req->ifr_data = (char *)(le32_to_cpu(param.id));
+   wrq->u.param.value = le32_to_cpu(param.id);
else
return -EFAULT;
 
diff --git a/drivers/net/wireless/libertas/scan.c 
b/drivers/net/wireless/libertas/scan.c
index 3da1efd..a1ab698 100644
--- a/drivers/net/wireless/libertas/scan.c
+++ b/drivers/net/wireless/libertas/scan.c
@@ -59,8 +59,8 @@
 //! Scan time specified in the channel TLV for each channel for active scans
 #define MRVDRV_ACTIVE_SCAN_CHAN_TIME   100
 
-const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
-const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
+static const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
+static const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
 
 static inline void clear_bss_descriptor (struct bss_descriptor * bss)
 {
@@ -1855,7 +1855,6 @@ int libertas_ret_80211_scan(wlan_private * priv, struct 
cmd_ds_command *resp)
for (idx = 0; idx < pscan->nr_sets && bytesleft; idx++) {
struct bss_descriptor new;
struct bss_descriptor * found = NULL;
-   struct bss_descriptor * iter_bss = NULL;
struct bss_descriptor * oldest = NULL;
 
/* Process the data fields and IEs returned for this BSS */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] libertas: sparse fixes

2007-05-11 Thread Linux Kernel Mailing List
Gitweb: 
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c4aa7051b6d5697d2c0c169153e727c2e4175c5b
Commit: c4aa7051b6d5697d2c0c169153e727c2e4175c5b
Parent: 12a4d265e5ca354fb9225732b7e625bd2bc4
Author: Dan Williams <[EMAIL PROTECTED]>
AuthorDate: Thu May 10 23:09:33 2007 -0400
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Fri May 11 14:54:55 2007 -0400

[PATCH] libertas: sparse fixes

Fix various issues reported by sparse.

Signed-off-by: Dan Williams <[EMAIL PROTECTED]>
Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/ioctl.c |   19 ++-
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/drivers/net/wireless/libertas/ioctl.c 
b/drivers/net/wireless/libertas/ioctl.c
index 42dfd45..a8f76c3 100644
--- a/drivers/net/wireless/libertas/ioctl.c
+++ b/drivers/net/wireless/libertas/ioctl.c
@@ -680,6 +680,7 @@ static int wlan_fwt_list_neighbor_ioctl(wlan_private * 
priv, struct ifreq *req)
  */
 static int wlan_fwt_cleanup_ioctl(wlan_private * priv, struct ifreq *req)
 {
+   struct iwreq *wrq = (struct iwreq *)req;
static struct cmd_ds_fwt_access fwt_access;
int ret;
 
@@ -695,7 +696,7 @@ static int wlan_fwt_cleanup_ioctl(wlan_private * priv, 
struct ifreq *req)
(void *)&fwt_access);
 
if (ret == 0)
-   req->ifr_data = (char *)(le32_to_cpu(fwt_access.references));
+   wrq->u.param.value = le32_to_cpu(fwt_access.references);
else
return -EFAULT;
 
@@ -711,6 +712,7 @@ static int wlan_fwt_cleanup_ioctl(wlan_private * priv, 
struct ifreq *req)
  */
 static int wlan_fwt_time_ioctl(wlan_private * priv, struct ifreq *req)
 {
+   struct iwreq *wrq = (struct iwreq *)req;
static struct cmd_ds_fwt_access fwt_access;
int ret;
 
@@ -726,7 +728,7 @@ static int wlan_fwt_time_ioctl(wlan_private * priv, struct 
ifreq *req)
(void *)&fwt_access);
 
if (ret == 0)
-   req->ifr_data = (char *)(le32_to_cpu(fwt_access.references));
+   wrq->u.param.value = le32_to_cpu(fwt_access.references);
else
return -EFAULT;
 
@@ -742,6 +744,7 @@ static int wlan_fwt_time_ioctl(wlan_private * priv, struct 
ifreq *req)
  */
 static int wlan_mesh_get_ttl_ioctl(wlan_private * priv, struct ifreq *req)
 {
+   struct iwreq *wrq = (struct iwreq *)req;
struct cmd_ds_mesh_access mesh_access;
int ret;
 
@@ -754,9 +757,8 @@ static int wlan_mesh_get_ttl_ioctl(wlan_private * priv, 
struct ifreq *req)
cmd_option_waitforrsp, 0,
(void *)&mesh_access);
 
-   if (ret == 0) {
-   req->ifr_data = (char *)(le32_to_cpu(mesh_access.data[0]));
-   }
+   if (ret == 0)
+   wrq->u.param.value = le32_to_cpu(mesh_access.data[0]);
else
return -EFAULT;
 
@@ -832,10 +834,9 @@ int libertas_do_ioctl(struct net_device *dev, struct ifreq 
*req, int cmd)
/* The first 4 bytes of req->ifr_data is sub-ioctl number
 * after 4 bytes sits the payload.
 */
-   subcmd = wrq->u.data.flags; //from wpa_supplicant subcmd
-
+   subcmd = wrq->u.data.flags;
if (!subcmd)
-   subcmd = (int)req->ifr_data;//from iwpriv subcmd
+   subcmd = (int)wrq->u.param.value;
 
switch (subcmd) {
case WLANSETREGION:
@@ -887,7 +888,7 @@ int libertas_do_ioctl(struct net_device *dev, struct ifreq 
*req, int cmd)
break;
 
case WLAN_SETNONE_GETONEINT:
-   switch ((int)req->ifr_data) {
+   switch (wrq->u.param.value) {
case WLANGETREGION:
pdata = (int *)wrq->u.name;
*pdata = (int)adapter->regioncode;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html