Browse Source

edac: fix the error about memory type detection on SandyBridge

On SandyBridge, DDRIOA(Dev: 17 Func: 0 Offset: 328) is used
to detect whether DIMM is RDIMM/LRDIMM, not TA(Dev: 15 Func: 0).

Signed-off-by: Chen Gong <gong.chen@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Chen Gong 13 years ago
parent
commit
2cbb587d3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/edac/sb_edac.c

+ 1 - 1
drivers/edac/sb_edac.c

@@ -555,7 +555,7 @@ static int get_dimm_config(struct mem_ctl_info *mci)
 		pvt->is_close_pg = false;
 		pvt->is_close_pg = false;
 	}
 	}
 
 
-	pci_read_config_dword(pvt->pci_ta, RANK_CFG_A, &reg);
+	pci_read_config_dword(pvt->pci_ddrio, RANK_CFG_A, &reg);
 	if (IS_RDIMM_ENABLED(reg)) {
 	if (IS_RDIMM_ENABLED(reg)) {
 		/* FIXME: Can also be LRDIMM */
 		/* FIXME: Can also be LRDIMM */
 		debugf0("Memory is registered\n");
 		debugf0("Memory is registered\n");