staging: wilc1000: rename strHostIfSetMacAddress
authorTony Cho <tony.cho@atmel.com>
Wed, 30 Sep 2015 09:55:07 +0000 (18:55 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2015 09:57:00 +0000 (11:57 +0200)
This patch renames strHostIfSetMacAddress to set_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 a66f78d0950009e66f9806865c04406df1ddc19e..2fa1158c88a001edf445c5f52535239bfe9821a9 100644 (file)
@@ -387,7 +387,7 @@ union message_body {
        struct drv_handler drv;
        struct set_multicast multicast_info;
        struct op_mode mode;
-       struct set_mac_addr strHostIfSetMacAddress;
+       struct set_mac_addr set_mac_info;
        struct get_mac_addr strHostIfGetMacAddress;
        struct ba_session_info strHostIfBASessionInfo;
        struct remain_ch strHostIfRemainOnChan;
@@ -4177,7 +4177,7 @@ static int hostIFthread(void *pvArg)
                        break;
 
                case HOST_IF_MSG_SET_MAC_ADDRESS:
-                       Handle_SetMacAddress(msg.drvHandler, &msg.body.strHostIfSetMacAddress);
+                       Handle_SetMacAddress(msg.drvHandler, &msg.body.set_mac_info);
                        break;
 
                case HOST_IF_MSG_GET_MAC_ADDRESS:
@@ -4892,7 +4892,7 @@ s32 host_int_set_MacAddress(tstrWILC_WFIDrv *hWFIDrv, u8 *pu8MacAddress)
        /* prepare setting mac address message */
        memset(&msg, 0, sizeof(struct host_if_msg));
        msg.id = HOST_IF_MSG_SET_MAC_ADDRESS;
-       memcpy(msg.body.strHostIfSetMacAddress.u8MacAddress, pu8MacAddress, ETH_ALEN);
+       memcpy(msg.body.set_mac_info.u8MacAddress, pu8MacAddress, ETH_ALEN);
        msg.drvHandler = hWFIDrv;
 
        s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
This page took 0.027527 seconds and 5 git commands to generate.