Staging: wlan-ng: Remove multiple assignments
authorBhumika Goyal <bhumirks@gmail.com>
Sat, 13 Feb 2016 06:18:02 +0000 (11:48 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Feb 2016 00:34:08 +0000 (16:34 -0800)
Remove multiple assignments by factorizing them.
Made a coccinelle script to match cases:
@@
identifier a,b;
constant c;
@@
-a=b=c;
+a=c;
+b=c;

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211wep.c

index e9f990a52cad3d01a538736995f7ae739f137062..22c79703e328f7965cf4f3dbae4699eccdd9f157 100644 (file)
@@ -188,7 +188,8 @@ int wep_decrypt(wlandevice_t *wlandev, u8 *buf, u32 len, int key_override,
 
        /* Apply the RC4 to the data, update the CRC32 */
        crc = ~0;
-       i = j = 0;
+       i = 0;
+       j = 0;
        for (k = 0; k < len; k++) {
                i = (i + 1) & 0xff;
                j = (j + s[i]) & 0xff;
@@ -260,7 +261,8 @@ int wep_encrypt(wlandevice_t *wlandev, u8 *buf, u8 *dst, u32 len, int keynum,
 
        /* Update CRC32 then apply RC4 to the data */
        crc = ~0;
-       i = j = 0;
+       i = 0;
+       j = 0;
        for (k = 0; k < len; k++) {
                crc = wep_crc32_table[(crc ^ buf[k]) & 0xff] ^ (crc >> 8);
                i = (i + 1) & 0xff;