From: "John B. Wyatt IV" <sageofredo...@gmail.com>

Fixed a coding style issue.

Signed-off-by: John B. Wyatt IV <sageofredo...@gmail.com>
---
 drivers/staging/vt6655/aes_ccmp.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/vt6655/aes_ccmp.c 
b/drivers/staging/vt6655/aes_ccmp.c
index 3608148..c53478f 100644
--- a/drivers/staging/vt6655/aes_ccmp.c
+++ b/drivers/staging/vt6655/aes_ccmp.c
@@ -381,9 +381,8 @@ bool AESbGenCCMP(unsigned char *pbyRxKey, unsigned char 
*pbyFrame, unsigned shor
        //=>above is the dec-MIC from packet
        //--------------------------------------------
 
-       if (!memcmp(abyMIC, abyTmp, 8)) {
+       if (!memcmp(abyMIC, abyTmp, 8))
                return true;
-       } else {
+       else
                return false;
-       }
 }
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to