From 2b8d5e5b39a251b99a42cac8eccb268190ff3baf Mon Sep 17 00:00:00 2001 From: "John B. Wyatt IV" Date: Wed, 19 Jun 2013 23:56:45 -0700 Subject: [PATCH] Staging: vt6655: aes_ccmp: fixed a brace coding style Fixed a coding style issue. Signed-off-by: John B. Wyatt IV Signed-off-by: Greg Kroah-Hartman --- 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 93a2638a7ad5..fc056fc61995 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; - } } -- 2.34.1