summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaehyun Lim2015-09-20 08:51:20 +0200
committerGreg Kroah-Hartman2015-09-21 04:04:14 +0200
commit967c606a90fc6f0fc6f1368a481fa906ab0aa54f (patch)
treedddb1d1725511d79ff1f10c448c19798d5bace3b
parentstaging: wilc1000: remove useless comment (diff)
downloadkernel-qcow2-linux-967c606a90fc6f0fc6f1368a481fa906ab0aa54f.tar.gz
kernel-qcow2-linux-967c606a90fc6f0fc6f1368a481fa906ab0aa54f.tar.xz
kernel-qcow2-linux-967c606a90fc6f0fc6f1368a481fa906ab0aa54f.zip
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 <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/wilc_msgqueue.c18
1 files changed, 9 insertions, 9 deletions
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;
}