diff options
author | Douglas Thompson <dougthompson@xmission.com> | 2007-07-19 01:50:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 10:04:55 -0700 |
commit | f044091ca4c0b05be8f83748d76d4fbba4fc74cf (patch) | |
tree | 0ceb7dabbddce313917ff5b7d15e72aed231859a /drivers/edac/edac_pci.c | |
parent | 977c76bd687585f4528c6c9c6966842955771f52 (diff) | |
download | linux-stable-f044091ca4c0b05be8f83748d76d4fbba4fc74cf.tar.gz linux-stable-f044091ca4c0b05be8f83748d76d4fbba4fc74cf.tar.bz2 linux-stable-f044091ca4c0b05be8f83748d76d4fbba4fc74cf.zip |
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>
Diffstat (limited to 'drivers/edac/edac_pci.c')
-rw-r--r-- | drivers/edac/edac_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c index f4f718c764db..fd0b1222dc75 100644 --- a/drivers/edac/edac_pci.c +++ b/drivers/edac/edac_pci.c @@ -385,7 +385,7 @@ void edac_pci_generic_check(struct edac_pci_ctl_info *pci) edac_pci_do_parity_check(); } -static int edac_pci_idx = 0; +static int edac_pci_idx; #define EDAC_PCI_GENCTL_NAME "EDAC PCI controller" struct edac_pci_gen_data { |