提交 18c29002 编写于 作者: M Mauro Carvalho Chehab

i7core_edac: move static vars to the beginning of the file

While here, don't initialize probed with 0.
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 939747bd
...@@ -39,6 +39,11 @@ ...@@ -39,6 +39,11 @@
#include "edac_core.h" #include "edac_core.h"
/* Static vars */
static LIST_HEAD(i7core_edac_list);
static DEFINE_MUTEX(i7core_edac_lock);
static int probed;
/* /*
* This is used for Nehalem-EP and Nehalem-EX devices, where the non-core * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
* registers start at bus 255, and are not reported by BIOS. * registers start at bus 255, and are not reported by BIOS.
...@@ -266,10 +271,6 @@ struct i7core_pvt { ...@@ -266,10 +271,6 @@ struct i7core_pvt {
struct edac_pci_ctl_info *i7core_pci; struct edac_pci_ctl_info *i7core_pci;
}; };
/* Static vars */
static LIST_HEAD(i7core_edac_list);
static DEFINE_MUTEX(i7core_edac_lock);
#define PCI_DESCR(device, function, device_id) \ #define PCI_DESCR(device, function, device_id) \
.dev = (device), \ .dev = (device), \
.func = (function), \ .func = (function), \
...@@ -1950,8 +1951,6 @@ static int i7core_register_mci(struct i7core_dev *i7core_dev, ...@@ -1950,8 +1951,6 @@ static int i7core_register_mci(struct i7core_dev *i7core_dev,
* < 0 for error code * < 0 for error code
*/ */
static int probed = 0;
static int __devinit i7core_probe(struct pci_dev *pdev, static int __devinit i7core_probe(struct pci_dev *pdev,
const struct pci_device_id *id) const struct pci_device_id *id)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册