staging: wilc1000: rename pu8ConnReqIEs of struct user_conn_req
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 02:58:54 +0000 (11:58 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames pu8ConnReqIEs of struct user_conn_req to ies
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index 9f70a858f40362d42a7185a8c917e2094fb59755..667bd2d892cf053bc7005e9f696157859f87ffca 100644 (file)
@@ -1021,8 +1021,8 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
 
        hif_drv->usr_conn_req.ConnReqIEsLen = pstrHostIFconnectAttr->ies_len;
        if (pstrHostIFconnectAttr->ies) {
-               hif_drv->usr_conn_req.pu8ConnReqIEs = kmalloc(pstrHostIFconnectAttr->ies_len, GFP_KERNEL);
-               memcpy(hif_drv->usr_conn_req.pu8ConnReqIEs,
+               hif_drv->usr_conn_req.ies = kmalloc(pstrHostIFconnectAttr->ies_len, GFP_KERNEL);
+               memcpy(hif_drv->usr_conn_req.ies,
                       pstrHostIFconnectAttr->ies,
                       pstrHostIFconnectAttr->ies_len);
        }
@@ -1053,14 +1053,14 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
        {
                strWIDList[u32WidsCount].id = WID_INFO_ELEMENT_ASSOCIATE;
                strWIDList[u32WidsCount].type = WID_BIN_DATA;
-               strWIDList[u32WidsCount].val = hif_drv->usr_conn_req.pu8ConnReqIEs;
+               strWIDList[u32WidsCount].val = hif_drv->usr_conn_req.ies;
                strWIDList[u32WidsCount].size = hif_drv->usr_conn_req.ConnReqIEsLen;
                u32WidsCount++;
 
                if (memcmp("DIRECT-", pstrHostIFconnectAttr->ssid, 7)) {
                        info_element_size = hif_drv->usr_conn_req.ConnReqIEsLen;
                        info_element = kmalloc(info_element_size, GFP_KERNEL);
-                       memcpy(info_element, hif_drv->usr_conn_req.pu8ConnReqIEs,
+                       memcpy(info_element, hif_drv->usr_conn_req.ies,
                               info_element_size);
                }
        }
@@ -1339,11 +1339,11 @@ static s32 Handle_ConnectTimeout(struct host_if_drv *hif_drv)
                               hif_drv->usr_conn_req.pu8bssid, 6);
                }
 
-               if (hif_drv->usr_conn_req.pu8ConnReqIEs) {
+               if (hif_drv->usr_conn_req.ies) {
                        strConnectInfo.ReqIEsLen = hif_drv->usr_conn_req.ConnReqIEsLen;
                        strConnectInfo.pu8ReqIEs = kmalloc(hif_drv->usr_conn_req.ConnReqIEsLen, GFP_KERNEL);
                        memcpy(strConnectInfo.pu8ReqIEs,
-                              hif_drv->usr_conn_req.pu8ConnReqIEs,
+                              hif_drv->usr_conn_req.ies,
                               hif_drv->usr_conn_req.ConnReqIEsLen);
                }
 
@@ -1375,7 +1375,7 @@ static s32 Handle_ConnectTimeout(struct host_if_drv *hif_drv)
        kfree(hif_drv->usr_conn_req.pu8ssid);
        kfree(hif_drv->usr_conn_req.pu8bssid);
        hif_drv->usr_conn_req.ConnReqIEsLen = 0;
-       kfree(hif_drv->usr_conn_req.pu8ConnReqIEs);
+       kfree(hif_drv->usr_conn_req.ies);
 
        eth_zero_addr(u8ConnectedSSID);
 
@@ -1586,11 +1586,11 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
                                }
                        }
 
-                       if (hif_drv->usr_conn_req.pu8ConnReqIEs) {
+                       if (hif_drv->usr_conn_req.ies) {
                                strConnectInfo.ReqIEsLen = hif_drv->usr_conn_req.ConnReqIEsLen;
                                strConnectInfo.pu8ReqIEs = kmalloc(hif_drv->usr_conn_req.ConnReqIEsLen, GFP_KERNEL);
                                memcpy(strConnectInfo.pu8ReqIEs,
-                                      hif_drv->usr_conn_req.pu8ConnReqIEs,
+                                      hif_drv->usr_conn_req.ies,
                                       hif_drv->usr_conn_req.ConnReqIEsLen);
                        }
 
@@ -1627,7 +1627,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
                        kfree(hif_drv->usr_conn_req.pu8ssid);
                        kfree(hif_drv->usr_conn_req.pu8bssid);
                        hif_drv->usr_conn_req.ConnReqIEsLen = 0;
-                       kfree(hif_drv->usr_conn_req.pu8ConnReqIEs);
+                       kfree(hif_drv->usr_conn_req.ies);
                } else if ((u8MacStatus == MAC_DISCONNECTED) &&
                           (hif_drv->hif_state == HOST_IF_CONNECTED)) {
                        PRINT_D(HOSTINF_DBG, "Received MAC_DISCONNECTED from the FW\n");
@@ -1663,7 +1663,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
                        kfree(hif_drv->usr_conn_req.pu8ssid);
                        kfree(hif_drv->usr_conn_req.pu8bssid);
                        hif_drv->usr_conn_req.ConnReqIEsLen = 0;
-                       kfree(hif_drv->usr_conn_req.pu8ConnReqIEs);
+                       kfree(hif_drv->usr_conn_req.ies);
 
                        if (join_req && join_req_drv == hif_drv) {
                                kfree(join_req);
@@ -2027,7 +2027,7 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
                kfree(hif_drv->usr_conn_req.pu8ssid);
                kfree(hif_drv->usr_conn_req.pu8bssid);
                hif_drv->usr_conn_req.ConnReqIEsLen = 0;
-               kfree(hif_drv->usr_conn_req.pu8ConnReqIEs);
+               kfree(hif_drv->usr_conn_req.ies);
 
                if (join_req && join_req_drv == hif_drv) {
                        kfree(join_req);
index 69ce8f14fb2ec03bc9876e5b816594bec7903ac1..de4e7d94dfea272f27589e28e0e3e5d399f1bad1 100644 (file)
@@ -204,7 +204,7 @@ struct user_conn_req {
        u8 u8security;
        enum AUTHTYPE tenuAuth_type;
        size_t ssid_len;
-       u8 *pu8ConnReqIEs;
+       u8 *ies;
        size_t ConnReqIEsLen;
        wilc_connect_result pfUserConnectResult;
        bool IsHTCapable;
This page took 0.030144 seconds and 5 git commands to generate.