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>
This commit is contained in:
parent
8dfaafd639
commit
6fffc6213d
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue