mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
Staging: rtl8712: Remove zero-testing pointer typed value
Removes variable comparison with 0 by using !. Done using following coccinelle script. @ disable is_zero,isnt_zero @ expression *E; expression E1,f; @@ E = f(...) <... ( - E == 0 + !E | - E != 0 + E | - 0 == E + !E | - 0 != E + E ) ...> ?E = E1 @ disable is_zero,isnt_zero @ expression *E; @@ ( E == - 0 + NULL | E != - 0 + NULL | - 0 + NULL == E | - 0 + NULL != E ) Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b6955a8f43
commit
5c7d08c32d
@ -153,7 +153,7 @@ static u32 getcrc32(u8 *buf, u32 len)
|
|||||||
u8 *p;
|
u8 *p;
|
||||||
u32 crc;
|
u32 crc;
|
||||||
|
|
||||||
if (bcrc32initialized == 0)
|
if (!bcrc32initialized)
|
||||||
crc32_init();
|
crc32_init();
|
||||||
crc = 0xffffffff; /* preload shift register, per CRC-32 spec */
|
crc = 0xffffffff; /* preload shift register, per CRC-32 spec */
|
||||||
for (p = buf; len > 0; ++p, --len)
|
for (p = buf; len > 0; ++p, --len)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user