Commit 2b8d5e5b authored by John B. Wyatt IV's avatar John B. Wyatt IV Committed by Greg Kroah-Hartman

Staging: vt6655: aes_ccmp: fixed a brace coding style

Fixed a coding style issue.
Signed-off-by: default avatarJohn B. Wyatt IV <sageofredondo@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 34fbb97c
......@@ -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;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment