staging: wilc1000: rename s32Error in host_int_set_operation_mode
authorChaehyun Lim <chaehyun.lim@gmail.com>
Mon, 5 Oct 2015 10:34:50 +0000 (19:34 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:58:24 +0000 (10:58 +0100)
This patch replaces s32Error with result to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index 605bb2b50ec914d1b44f4a0b67d9dd76a8cf3fb9..b8f639e15adebb4a7c2eff95519a1c9a54f79933 100644 (file)
@@ -5284,7 +5284,7 @@ int host_int_set_wfi_drv_handler(tstrWILC_WFIDrv *address)
 
 int host_int_set_operation_mode(tstrWILC_WFIDrv *hWFIDrv, u32 u32mode)
 {
-       int s32Error = 0;
+       int result = 0;
 
        struct host_if_msg msg;
 
@@ -5295,13 +5295,13 @@ int host_int_set_operation_mode(tstrWILC_WFIDrv *hWFIDrv, u32 u32mode)
        msg.body.mode.u32Mode = u32mode;
        msg.drvHandler = hWFIDrv;
 
-       s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
-       if (s32Error) {
+       result = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
+       if (result) {
                PRINT_ER("wilc mq send fail\n");
-               s32Error = -EINVAL;
+               result = -EINVAL;
        }
 
-       return s32Error;
+       return result;
 }
 
 /**