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: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Sunil Shahu <shshahu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sunil Shahu 2015-06-26 19:42:24 +05:30 committed by Greg Kroah-Hartman
parent 8027b33321
commit a732152c76
1 changed files with 1 additions and 1 deletions

View File

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