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

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