From: Leo Kim <leo....@atmel.com>

This patch renames u32UserScanPvoid of struct user_scan_req to arg
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo....@atmel.com>
Signed-off-by: Glen Lee <glen....@atmel.com>
---
 drivers/staging/wilc1000/host_interface.c | 12 ++++++------
 drivers/staging/wilc1000/host_interface.h |  3 +--
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c 
b/drivers/staging/wilc1000/host_interface.c
index a1437e2..3648e3c 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -823,7 +823,7 @@ static s32 Handle_Scan(struct host_if_drv *hif_drv,
        PRINT_D(HOSTINF_DBG, "Scanning: In [%d] state\n", hif_drv->hif_state);
 
        hif_drv->usr_scan_req.scan_result = pstrHostIFscanAttr->result;
-       hif_drv->usr_scan_req.u32UserScanPvoid = pstrHostIFscanAttr->arg;
+       hif_drv->usr_scan_req.arg = pstrHostIFscanAttr->arg;
 
        if ((hif_drv->hif_state >= HOST_IF_SCANNING) &&
            (hif_drv->hif_state < HOST_IF_CONNECTED)) {
@@ -971,7 +971,7 @@ static s32 Handle_ScanDone(struct host_if_drv *hif_drv,
 
        if (hif_drv->usr_scan_req.scan_result) {
                hif_drv->usr_scan_req.scan_result(enuEvent, NULL,
-                                                 
hif_drv->usr_scan_req.u32UserScanPvoid, NULL);
+                                                 hif_drv->usr_scan_req.arg, 
NULL);
                hif_drv->usr_scan_req.scan_result = NULL;
        }
 
@@ -1448,7 +1448,7 @@ static s32 Handle_RcvdNtwrkInfo(struct host_if_drv 
*hif_drv,
                                        pJoinParams = 
host_int_ParseJoinBssParam(pstrNetworkInfo);
 
                                        
hif_drv->usr_scan_req.scan_result(SCAN_EVENT_NETWORK_FOUND, pstrNetworkInfo,
-                                                                         
hif_drv->usr_scan_req.u32UserScanPvoid,
+                                                                         
hif_drv->usr_scan_req.arg,
                                                                          
pJoinParams);
                                }
                        } else {
@@ -1457,7 +1457,7 @@ static s32 Handle_RcvdNtwrkInfo(struct host_if_drv 
*hif_drv,
                } else {
                        pstrNetworkInfo->bNewNetwork = false;
                        
hif_drv->usr_scan_req.scan_result(SCAN_EVENT_NETWORK_FOUND, pstrNetworkInfo,
-                                                         
hif_drv->usr_scan_req.u32UserScanPvoid, NULL);
+                                                         
hif_drv->usr_scan_req.arg, NULL);
                }
        }
 
@@ -2001,7 +2001,7 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
                if (hif_drv->usr_scan_req.scan_result) {
                        del_timer(&hif_drv->scan_timer);
                        hif_drv->usr_scan_req.scan_result(SCAN_EVENT_ABORTED, 
NULL,
-                                                         
hif_drv->usr_scan_req.u32UserScanPvoid, NULL);
+                                                         
hif_drv->usr_scan_req.arg, NULL);
                        hif_drv->usr_scan_req.scan_result = NULL;
                }
 
@@ -4210,7 +4210,7 @@ s32 host_int_deinit(struct host_if_drv *hif_drv)
 
        if (hif_drv->usr_scan_req.scan_result) {
                hif_drv->usr_scan_req.scan_result(SCAN_EVENT_ABORTED, NULL,
-                                                 
hif_drv->usr_scan_req.u32UserScanPvoid, NULL);
+                                                 hif_drv->usr_scan_req.arg, 
NULL);
                hif_drv->usr_scan_req.scan_result = NULL;
        }
 
diff --git a/drivers/staging/wilc1000/host_interface.h 
b/drivers/staging/wilc1000/host_interface.h
index b90d9d2..058ea17 100644
--- a/drivers/staging/wilc1000/host_interface.h
+++ b/drivers/staging/wilc1000/host_interface.h
@@ -193,8 +193,7 @@ struct hidden_network {
 
 struct user_scan_req {
        wilc_scan_result scan_result;
-       void *u32UserScanPvoid;
-
+       void *arg;
        u32 u32RcvdChCount;
        struct found_net_info astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS];
 };
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to