aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-09-24 09:58:26 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-10 11:45:00 -0300
commit4af91889e02c9933823ca8c62fc6f05dfd15f3bd (patch)
tree625f4c9ebe3d18bd7ccdaadb806cbc2d1fecad81 /drivers/edac
parenti7core_edac: We need to use list_for_each_entry_safe to avoid errors (diff)
downloadlinux-dev-4af91889e02c9933823ca8c62fc6f05dfd15f3bd.tar.xz
linux-dev-4af91889e02c9933823ca8c62fc6f05dfd15f3bd.zip
i7core_edac: Avoid printing a warning when debug is disabled
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/edac')
-rw-r--r--drivers/edac/i7core_edac.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c
index 2e4b0abf9d43..0478cc85e920 100644
--- a/drivers/edac/i7core_edac.c
+++ b/drivers/edac/i7core_edac.c
@@ -471,7 +471,6 @@ static int get_dimm_config(struct mem_ctl_info *mci, int *csrow)
struct csrow_info *csr;
struct pci_dev *pdev;
int i, j;
- u8 socket = pvt->i7core_dev->socket;
unsigned long last_page = 0;
enum edac_type mode;
enum mem_type mtype;
@@ -488,7 +487,7 @@ static int get_dimm_config(struct mem_ctl_info *mci, int *csrow)
pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
- socket, pvt->info.mc_control, pvt->info.mc_status,
+ pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
pvt->info.max_dod, pvt->info.ch_map);
if (ECC_ENABLED(pvt)) {