Staging: vt6655: aes_ccmp: fixed a brace coding style

Fixed a coding style issue.

Signed-off-by: John B. Wyatt IV <sageofredondo@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
John B. Wyatt IV 2013-06-19 23:56:45 -07:00 committed by Greg Kroah-Hartman
parent 34fbb97c07
commit 2b8d5e5b39

View file

@ -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;
}
}