staging: rtl8723au: remove intialization of static ints
authorSupriya Karanth <iskaranth@gmail.com>
Thu, 12 Mar 2015 04:26:20 +0000 (13:26 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Mar 2015 15:17:31 +0000 (16:17 +0100)
static ints are initialized to 0 by the compiler.
Explicit initialization is not necessary.

Found by checkpatch.pl - ERROR: do not initialise statics to 0 or NULL

changes made using coccinelle script:
@@
type T;
identifier var;
@@
static T var
- =0
;

Signed-off-by: Supriya Karanth <iskaranth@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_security.c
drivers/staging/rtl8723au/os_dep/os_intfs.c

index 0610d5f1bdc433429d4a1973b7964cd7370e2796..045a24c81b1256098498d7c91794b37d1c584693 100644 (file)
@@ -87,7 +87,7 @@ static void arcfour_encrypt(  struct arc4context      *parc4ctx,
 
 }
 
-static int bcrc32initialized = 0;
+static int bcrc32initialized;
 static u32 crc32_table[256];
 
 static u8 crc32_reverseBit(u8 data)
index 1b23eb13222b76baafb92d974a9308fabd836203..db6a15971a211530a4854617420bd48b7914573e 100644 (file)
@@ -34,7 +34,7 @@ MODULE_FIRMWARE("rtlwifi/rtl8723aufw_B.bin");
 MODULE_FIRMWARE("rtlwifi/rtl8723aufw_B_NoBT.bin");
 
 /* module param defaults */
-static int rtw_chip_version = 0x00;
+static int rtw_chip_version;
 static int rtw_rfintfs = HWPI;
 static int rtw_debug = 1;