Commit f044091ca4c0b05be8f83748d76d4fbba4fc74cf

Authored by Douglas Thompson
Committed by Linus Torvalds
1 parent 977c76bd68

drivers/edac: remove null from statics

Patches to conform to coding style, namely static don't need to be initialized
to NULL nor '0', as that is the default

Signed-off-by: Douglas Thompson <dougthompson@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 8 changed files with 9 additions and 9 deletions Side-by-side Diff

drivers/edac/edac_mc_sysfs.c
... ... @@ -17,7 +17,7 @@
17 17 /* MC EDAC Controls, setable by module parameter, and sysfs */
18 18 static int edac_mc_log_ue = 1;
19 19 static int edac_mc_log_ce = 1;
20   -static int edac_mc_panic_on_ue = 0;
  20 +static int edac_mc_panic_on_ue;
21 21 static int edac_mc_poll_msec = 1000;
22 22  
23 23 /* Getter functions for above */
drivers/edac/edac_module.c
... ... @@ -32,7 +32,7 @@
32 32 static struct sysdev_class edac_class = {
33 33 set_kset_name("edac"),
34 34 };
35   -static int edac_class_valid = 0;
  35 +static int edac_class_valid;
36 36  
37 37 /*
38 38 * edac_op_state_toString()
drivers/edac/edac_pci.c
... ... @@ -385,7 +385,7 @@
385 385 edac_pci_do_parity_check();
386 386 }
387 387  
388   -static int edac_pci_idx = 0;
  388 +static int edac_pci_idx;
389 389 #define EDAC_PCI_GENCTL_NAME "EDAC PCI controller"
390 390  
391 391 struct edac_pci_gen_data {
drivers/edac/edac_pci_sysfs.c
... ... @@ -17,8 +17,8 @@
17 17  
18 18 #define EDAC_PCI_SYMLINK "device"
19 19  
20   -static int check_pci_errors = 0; /* default YES check PCI parity */
21   -static int edac_pci_panic_on_pe = 0; /* default no panic on PCI Parity */
  20 +static int check_pci_errors; /* default YES check PCI parity */
  21 +static int edac_pci_panic_on_pe; /* default no panic on PCI Parity */
22 22 static int edac_pci_log_pe = 1; /* log PCI parity errors */
23 23 static int edac_pci_log_npe = 1; /* log PCI non-parity error errors */
24 24 static atomic_t pci_parity_count = ATOMIC_INIT(0);
drivers/edac/i3000_edac.c
... ... @@ -151,7 +151,7 @@
151 151 .ctl_name = "i3000"},
152 152 };
153 153  
154   -static struct pci_dev *mci_pdev = NULL;
  154 +static struct pci_dev *mci_pdev;
155 155 static int i3000_registered = 1;
156 156 static struct edac_pci_ctl_info *i3000_pci;
157 157  
drivers/edac/i82860_edac.c
... ... @@ -57,7 +57,7 @@
57 57 .ctl_name = "i82860"},
58 58 };
59 59  
60   -static struct pci_dev *mci_pdev = NULL; /* init dev: in case that AGP code
  60 +static struct pci_dev *mci_pdev; /* init dev: in case that AGP code
61 61 * has already registered driver
62 62 */
63 63 static struct edac_pci_ctl_info *i82860_pci;
drivers/edac/i82875p_edac.c
... ... @@ -177,7 +177,7 @@
177 177 .ctl_name = "i82875p"},
178 178 };
179 179  
180   -static struct pci_dev *mci_pdev = NULL; /* init dev: in case that AGP code has
  180 +static struct pci_dev *mci_pdev; /* init dev: in case that AGP code has
181 181 * already registered driver
182 182 */
183 183  
drivers/edac/r82600_edac.c
... ... @@ -131,7 +131,7 @@
131 131 u32 eapr;
132 132 };
133 133  
134   -static unsigned int disable_hardware_scrub = 0;
  134 +static unsigned int disable_hardware_scrub;
135 135  
136 136 static struct edac_pci_ctl_info *r82600_pci;
137 137