]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename strHostIfSetOperationMode
authorTony Cho <tony.cho@atmel.com>
Wed, 30 Sep 2015 09:55:06 +0000 (18:55 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2015 09:57:00 +0000 (11:57 +0200)
This patch renames strHostIfSetOperationMode to mode 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 034e3d9f445260a4b9fcaf9dab17195593445d55..a66f78d0950009e66f9806865c04406df1ddc19e 100644 (file)
@@ -386,7 +386,7 @@ union message_body {
        struct set_ip_addr ip_info;
        struct drv_handler drv;
        struct set_multicast multicast_info;
-       struct op_mode strHostIfSetOperationMode;
+       struct op_mode mode;
        struct set_mac_addr strHostIfSetMacAddress;
        struct get_mac_addr strHostIfGetMacAddress;
        struct ba_session_info strHostIfBASessionInfo;
@@ -4163,7 +4163,7 @@ static int hostIFthread(void *pvArg)
                        break;
 
                case HOST_IF_MSG_SET_OPERATION_MODE:
-                       Handle_SetOperationMode(msg.drvHandler, &msg.body.strHostIfSetOperationMode);
+                       Handle_SetOperationMode(msg.drvHandler, &msg.body.mode);
                        break;
 
                case HOST_IF_MSG_SET_IPADDRESS:
@@ -5407,7 +5407,7 @@ s32 host_int_set_operation_mode(tstrWILC_WFIDrv *hWFIDrv, u32 u32mode)
 
        memset(&msg, 0, sizeof(struct host_if_msg));
        msg.id = HOST_IF_MSG_SET_OPERATION_MODE;
-       msg.body.strHostIfSetOperationMode.u32Mode = u32mode;
+       msg.body.mode.u32Mode = u32mode;
        msg.drvHandler = hWFIDrv;
 
        s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));