]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wilc1000: wilc_msgqueue.c: remove braces for single statement
authorChaehyun Lim <chaehyun.lim@gmail.com>
Wed, 19 Aug 2015 06:58:56 +0000 (15:58 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:24:28 +0000 (18:24 -0700)
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>
drivers/staging/wilc1000/wilc_msgqueue.c

index f047d6228a7b0602af84c2bc9069f3af80e5c104..fcf3a29ab8977b7169d03532ce199d10a3ef92be 100644 (file)
@@ -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);
                }
        }