[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1371711405-7260-1-git-send-email-sageofredondo@gmail.com>
Date: Wed, 19 Jun 2013 23:56:45 -0700
From: "John B. Wyatt IV" <sageofredondo@...il.com>
To: gregkh@...uxfoundation.org
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
"John B. Wyatt IV" <sageofredondo@...il.com>
Subject: [PATCH] Staging: vt6655: aes_ccmp: fixed a brace coding style
From: "John B. Wyatt IV" <sageofredondo@...il.com>
Fixed a coding style issue.
Signed-off-by: John B. Wyatt IV <sageofredondo@...il.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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists