diff options
author | Douglas Thompson <dougthompson@xmission.com> | 2007-07-19 04:50:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:55 -0400 |
commit | f044091ca4c0b05be8f83748d76d4fbba4fc74cf (patch) | |
tree | 0ceb7dabbddce313917ff5b7d15e72aed231859a /drivers/edac/i82860_edac.c | |
parent | 977c76bd687585f4528c6c9c6966842955771f52 (diff) |
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/i82860_edac.c')
-rw-r--r-- | drivers/edac/i82860_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/i82860_edac.c b/drivers/edac/i82860_edac.c index 9fdd76e157f8..c4c1e76b1270 100644 --- a/drivers/edac/i82860_edac.c +++ b/drivers/edac/i82860_edac.c | |||
@@ -57,7 +57,7 @@ static const struct i82860_dev_info i82860_devs[] = { | |||
57 | .ctl_name = "i82860"}, | 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 | * has already registered driver | 61 | * has already registered driver |
62 | */ | 62 | */ |
63 | static struct edac_pci_ctl_info *i82860_pci; | 63 | static struct edac_pci_ctl_info *i82860_pci; |