Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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;
}
}