OSDN Git Service

staging: wilc1000: rename strHostIfGetMacAddress
authorTony Cho <tony.cho@atmel.com>
Wed, 30 Sep 2015 09:55:08 +0000 (18:55 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2015 09:57:00 +0000 (11:57 +0200)
This patch renames strHostIfGetMacAddress to get_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 2fa1158..a6702dd 100644 (file)
@@ -388,7 +388,7 @@ union message_body {
        struct set_multicast multicast_info;
        struct op_mode mode;
        struct set_mac_addr set_mac_info;
-       struct get_mac_addr strHostIfGetMacAddress;
+       struct get_mac_addr get_mac_info;
        struct ba_session_info strHostIfBASessionInfo;
        struct remain_ch strHostIfRemainOnChan;
        struct reg_frame strHostIfRegisterFrame;
@@ -4181,7 +4181,7 @@ static int hostIFthread(void *pvArg)
                        break;
 
                case HOST_IF_MSG_GET_MAC_ADDRESS:
-                       Handle_GetMacAddress(msg.drvHandler, &msg.body.strHostIfGetMacAddress);
+                       Handle_GetMacAddress(msg.drvHandler, &msg.body.get_mac_info);
                        break;
 
                case HOST_IF_MSG_REMAIN_ON_CHAN:
@@ -4858,7 +4858,7 @@ s32 host_int_get_MacAddress(tstrWILC_WFIDrv *hWFIDrv, u8 *pu8MacAddress)
        memset(&msg, 0, sizeof(struct host_if_msg));
 
        msg.id = HOST_IF_MSG_GET_MAC_ADDRESS;
-       msg.body.strHostIfGetMacAddress.u8MacAddress = pu8MacAddress;
+       msg.body.get_mac_info.u8MacAddress = pu8MacAddress;
        msg.drvHandler = hWFIDrv;
        /* send the message */
        s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));