From b5843ffcb0b784d5e3d34e6007d102fe8afe6a44 Mon Sep 17 00:00:00 2001 From: Ronald Hoogenboom Date: Sat, 18 Apr 2009 23:04:28 +0000 Subject: [PATCH] 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 Acked-by: Marc Jones git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4137 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/northbridge/amd/amdk8/raminit_f.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/northbridge/amd/amdk8/raminit_f.c b/src/northbridge/amd/amdk8/raminit_f.c index 097e3b53a..056108994 100644 --- a/src/northbridge/amd/amdk8/raminit_f.c +++ b/src/northbridge/amd/amdk8/raminit_f.c @@ -2205,9 +2205,10 @@ static int update_dimm_Tref(const struct mem_controller *ctrl, static void set_4RankRDimm(const struct mem_controller *ctrl, const struct mem_param *param, struct mem_info *meminfo) { -#if QRANK_DIMM_SUPPRT == 1 +#if QRANK_DIMM_SUPPORT == 1 int value; int i; + long dimm_mask = meminfo->dimm_mask; if (!(meminfo->is_registered)) return; @@ -2219,7 +2220,7 @@ static void set_4RankRDimm(const struct mem_controller *ctrl, continue; } - if (meminfo->sz.rank == 4) { + if (meminfo->sz[i].rank == 4) { value = 1; break; } -- 2.25.1