[PATCH] Staging: vt6655: aes_ccmp: fixed a brace coding style

From: John B. Wyatt IV
Date: Thu Jun 20 2013 - 02:57:19 EST


From: "John B. Wyatt IV" <sageofredondo@xxxxxxxxx>

Fixed a coding style issue.

Signed-off-by: John B. Wyatt IV <sageofredondo@xxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/