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

Commit a732152c authored by Sunil Shahu's avatar Sunil Shahu Committed by Greg Kroah-Hartman
Browse files

staging: rtl8712: rtl871x_security.c: remove unnecessary variable initialization



Variable "u32 c" always re-initialize in for loop.
Initialized value of "u32 c" is not used in function
and is redundant, hence removed.

Suggested-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarSunil Shahu <shshahu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8027b333
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ static u8 crc32_reverseBit(u8 data)
static void crc32_init(void)
{
	sint i, j;
	u32 c = 0x12340000;
	u32 c;
	u8 *p = (u8 *)&c, *p1;
	u8 k;