staging: wilc1000: rename strHostIfStaInactiveT
authorTony Cho <tony.cho@atmel.com>
Wed, 30 Sep 2015 09:44:37 +0000 (18:44 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2015 09:55:59 +0000 (11:55 +0200)
This patch renames strHostIfStaInactiveT to mac_info to avoid CamelCase
naming convention.

Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index de64bd2785b943f550c28b42c1c857b56f7e83db..5a54608f1395ba9a42abb2b087f3a4e0c643bd61 100644 (file)
@@ -382,7 +382,7 @@ union message_body {
        struct del_sta del_sta_info;
        struct add_sta_param edit_sta_info;
        struct power_mgmt_param pwr_mgmt_info;
-       struct sta_inactive_t strHostIfStaInactiveT;
+       struct sta_inactive_t mac_info;
        struct set_ip_addr strHostIfSetIP;
        struct drv_handler strHostIfSetDrvHandler;
        struct set_multicast strHostIfSetMulti;
@@ -4139,7 +4139,7 @@ static int hostIFthread(void *pvArg)
                        break;
 
                case HOST_IF_MSG_GET_INACTIVETIME:
-                       Handle_Get_InActiveTime(msg.drvHandler, &msg.body.strHostIfStaInactiveT);
+                       Handle_Get_InActiveTime(msg.drvHandler, &msg.body.mac_info);
                        break;
 
                case HOST_IF_MSG_SCAN_TIMER_FIRED:
@@ -5533,7 +5533,7 @@ s32 host_int_get_inactive_time(tstrWILC_WFIDrv *hWFIDrv, const u8 *mac, u32 *pu3
        memset(&msg, 0, sizeof(struct host_if_msg));
 
 
-       memcpy(msg.body.strHostIfStaInactiveT.mac,
+       memcpy(msg.body.mac_info.mac,
                    mac, ETH_ALEN);
 
        msg.id = HOST_IF_MSG_GET_INACTIVETIME;
This page took 0.028666 seconds and 5 git commands to generate.