]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: wilc_msgqueue.c: replace s32RetStatus with result
authorChaehyun Lim <chaehyun.lim@gmail.com>
Sun, 20 Sep 2015 06:51:20 +0000 (15:51 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 02:04:14 +0000 (19:04 -0700)
This patch replaces s32RetStatus with result to avoid CamelCase in
wilc_msgqueue.c

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

index 225bb99986a5c092de8b6c083bb0704971ac5e18..869736aab44da000014fb9137b55c1464320e670 100644 (file)
@@ -55,19 +55,19 @@ int wilc_mq_destroy(WILC_MsgQueueHandle *pHandle)
 int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
                             const void *pvSendBuffer, u32 u32SendBufferSize)
 {
-       int s32RetStatus = 0;
+       int result = 0;
        unsigned long flags;
        Message *pstrMessage = NULL;
 
        if ((!pHandle) || (u32SendBufferSize == 0) || (!pvSendBuffer)) {
                PRINT_ER("pHandle or pvSendBuffer is null\n");
-               s32RetStatus = -EFAULT;
+               result = -EFAULT;
                goto ERRORHANDLER;
        }
 
        if (pHandle->bExiting) {
                PRINT_ER("pHandle fail\n");
-               s32RetStatus = -EFAULT;
+               result = -EFAULT;
                goto ERRORHANDLER;
        }
 
@@ -81,7 +81,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
        pstrMessage->pstrNext = NULL;
        pstrMessage->pvBuffer = kmalloc(u32SendBufferSize, GFP_ATOMIC);
        if (!pstrMessage->pvBuffer) {
-               s32RetStatus = -ENOMEM;
+               result = -ENOMEM;
                goto ERRORHANDLER;
        }
        memcpy(pstrMessage->pvBuffer, pvSendBuffer, u32SendBufferSize);
@@ -109,7 +109,7 @@ ERRORHANDLER:
                kfree(pstrMessage);
        }
 
-       return s32RetStatus;
+       return result;
 }
 
 /*!
@@ -123,7 +123,7 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
                             u32 *pu32ReceivedLength)
 {
        Message *pstrMessage;
-       int s32RetStatus = 0;
+       int result = 0;
        unsigned long flags;
 
        if ((!pHandle) || (u32RecvBufferSize == 0)
@@ -144,9 +144,9 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
        down(&pHandle->hSem);
 
        /* other non-timeout scenarios */
-       if (s32RetStatus) {
+       if (result) {
                PRINT_ER("Non-timeout\n");
-               return s32RetStatus;
+               return result;
        }
 
        if (pHandle->bExiting) {
@@ -182,5 +182,5 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
 
        spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
 
-       return s32RetStatus;
+       return result;
 }