There is a typo in amdk8/raminit_f.c regarding the preprocessor symbol QRANK_DIMM_SUPPORT in line 2208, which caused the protected code fragment never to be included for compilation.
Signed-off-by: Ronald Hoogenboom <hoogenboom30@zonnet.nl> Acked-by: Marc Jones <marcj303@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4137 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
4365659fda
commit
b5843ffcb0
|
@ -2205,9 +2205,10 @@ static int update_dimm_Tref(const struct mem_controller *ctrl,
|
||||||
static void set_4RankRDimm(const struct mem_controller *ctrl,
|
static void set_4RankRDimm(const struct mem_controller *ctrl,
|
||||||
const struct mem_param *param, struct mem_info *meminfo)
|
const struct mem_param *param, struct mem_info *meminfo)
|
||||||
{
|
{
|
||||||
#if QRANK_DIMM_SUPPRT == 1
|
#if QRANK_DIMM_SUPPORT == 1
|
||||||
int value;
|
int value;
|
||||||
int i;
|
int i;
|
||||||
|
long dimm_mask = meminfo->dimm_mask;
|
||||||
|
|
||||||
|
|
||||||
if (!(meminfo->is_registered)) return;
|
if (!(meminfo->is_registered)) return;
|
||||||
|
@ -2219,7 +2220,7 @@ static void set_4RankRDimm(const struct mem_controller *ctrl,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (meminfo->sz.rank == 4) {
|
if (meminfo->sz[i].rank == 4) {
|
||||||
value = 1;
|
value = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue