staging: wilc1000: rename au8AssociatedBSSID of struct host_if_drv
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 02:58:25 +0000 (11:58 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames au8AssociatedBSSID of struct host_if_drv to assoc_bssid
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 4e01dbd492ed264f49af22a63ec126cca4e0d6f0..7216d83bc3e193fbcc1bdcac387508c8b30c1f7d 100644 (file)
@@ -1581,7 +1581,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
 
                                if ((u8MacStatus == MAC_CONNECTED) &&
                                    (strConnectInfo.u16ConnectStatus == SUCCESSFUL_STATUSCODE)) {
-                                       memcpy(hif_drv->au8AssociatedBSSID,
+                                       memcpy(hif_drv->assoc_bssid,
                                               hif_drv->usr_conn_req.pu8bssid, ETH_ALEN);
                                }
                        }
@@ -1657,7 +1657,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
                                PRINT_ER("Connect result callback function is NULL\n");
                        }
 
-                       eth_zero_addr(hif_drv->au8AssociatedBSSID);
+                       eth_zero_addr(hif_drv->assoc_bssid);
 
                        hif_drv->usr_conn_req.ssidLen = 0;
                        kfree(hif_drv->usr_conn_req.pu8ssid);
@@ -1840,7 +1840,7 @@ static int Handle_Key(struct host_if_drv *hif_drv,
                        }
 
                        if (hif_drv->hif_state == HOST_IF_CONNECTED)
-                               memcpy(pu8keybuf, hif_drv->au8AssociatedBSSID, ETH_ALEN);
+                               memcpy(pu8keybuf, hif_drv->assoc_bssid, ETH_ALEN);
                        else
                                PRINT_ER("Couldn't handle WPARxGtk while state is not HOST_IF_CONNECTED\n");
 
@@ -2022,7 +2022,7 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
 
                hif_drv->hif_state = HOST_IF_IDLE;
 
-               eth_zero_addr(hif_drv->au8AssociatedBSSID);
+               eth_zero_addr(hif_drv->assoc_bssid);
 
                hif_drv->usr_conn_req.ssidLen = 0;
                kfree(hif_drv->usr_conn_req.pu8ssid);
index dcdb9c61b82c6424d9bd873ac16c385718b3ea0d..fcfdd2151c9fcbb0903b3c60131c5bd3f47d141c 100644 (file)
@@ -301,7 +301,7 @@ struct host_if_drv {
 
        enum host_if_state hif_state;
 
-       u8 au8AssociatedBSSID[ETH_ALEN];
+       u8 assoc_bssid[ETH_ALEN];
        struct cfg_param_val strCfgValues;
 /* semaphores */
        struct semaphore gtOsCfgValuesSem;
This page took 0.027744 seconds and 5 git commands to generate.