summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_msgqueue.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-08-19 08:58:56 +0200
committerGreg Kroah-Hartman2015-09-13 03:24:28 +0200
commit6fffc6213df87e78debd952fe28338a3c8816d03 (patch)
treeb04409d6540d4d8d3ce0f0141b14febb844f7ec9 /drivers/staging/wilc1000/wilc_msgqueue.c
parentstaging: wilc1000: add a blank line after declaration (diff)
downloadkernel-qcow2-linux-6fffc6213df87e78debd952fe28338a3c8816d03.tar.gz
kernel-qcow2-linux-6fffc6213df87e78debd952fe28338a3c8816d03.tar.xz
kernel-qcow2-linux-6fffc6213df87e78debd952fe28338a3c8816d03.zip
staging: wilc1000: wilc_msgqueue.c: remove braces for single statement
This patch removes braces for single statement blocks. WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/wilc_msgqueue.c')
-rw-r--r--drivers/staging/wilc1000/wilc_msgqueue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c
index f047d6228a7b..fcf3a29ab897 100644
--- a/drivers/staging/wilc1000/wilc_msgqueue.c
+++ b/drivers/staging/wilc1000/wilc_msgqueue.c
@@ -84,9 +84,9 @@ WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle,
} else {
Message *pstrTailMsg = pHandle->pstrMessageList;
- while (pstrTailMsg->pstrNext != NULL) {
+ while (pstrTailMsg->pstrNext != NULL)
pstrTailMsg = pstrTailMsg->pstrNext;
- }
+
pstrTailMsg->pstrNext = pstrMessage;
}
@@ -98,9 +98,9 @@ WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle,
{
/* error occured, free any allocations */
if (pstrMessage != NULL) {
- if (pstrMessage->pvBuffer != NULL) {
+ if (pstrMessage->pvBuffer != NULL)
kfree(pstrMessage->pvBuffer);
- }
+
kfree(pstrMessage);
}
}