From: Chaehyun Lim Date: Sun, 20 Sep 2015 06:51:20 +0000 (+0900) Subject: staging: wilc1000: wilc_msgqueue.c: replace s32RetStatus with result X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=967c606a90fc6f0fc6f1368a481fa906ab0aa54f;p=deliverable%2Flinux.git staging: wilc1000: wilc_msgqueue.c: replace s32RetStatus with result This patch replaces s32RetStatus with result to avoid CamelCase in wilc_msgqueue.c Signed-off-by: Chaehyun Lim Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c index 225bb99986a5..869736aab44d 100644 --- a/drivers/staging/wilc1000/wilc_msgqueue.c +++ b/drivers/staging/wilc1000/wilc_msgqueue.c @@ -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; }