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

Commit fd7dcd39 authored by Tapasweni Pathak's avatar Tapasweni Pathak Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: Merge three lines into one



This patch merges three lines into one, removing unecessary
if check.

Signed-off-by: default avatarTapasweni Pathak <tapaswenipathak@gmail.com>
Reviewed-by: default avatarHimangi Saraogi <himangi774@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f0cffbfe
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -370,7 +370,5 @@ bool AESbGenCCMP(unsigned char *pbyRxKey, unsigned char *pbyFrame, unsigned shor
	/* =>above is the dec-MIC from packet */
	/* -------------------------------------------- */

	if (!memcmp(abyMIC, abyTmp, 8))
		return true;
	return false;
	return !memcmp(abyMIC, abyTmp, 8);
}