diff options
author | Zheng Bao <zheng.bao@amd.com> | 2009-07-17 05:41:34 +0000 |
---|---|---|
committer | Zheng Bao <Zheng.Bao@amd.com> | 2009-07-17 05:41:34 +0000 |
commit | b17f9528cd1b04fe312475b3a05eae331beb9734 (patch) | |
tree | 7e484135ac5a1a1ba5a73403fa7b64b5a14530b4 /src/northbridge | |
parent | 782de9aa5eb33f0e5e2b57b3e2e5fa45ce7d58a4 (diff) |
This is an obvious bug which I overlooked when I worked on the AM2r2
modules.
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4430 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/amd/amdmct/mct/mctardk4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/amdmct/mct/mctardk4.c b/src/northbridge/amd/amdmct/mct/mctardk4.c index 8682e52551..a3592d470e 100644 --- a/src/northbridge/amd/amdmct/mct/mctardk4.c +++ b/src/northbridge/amd/amdmct/mct/mctardk4.c @@ -121,7 +121,7 @@ static void Get_ChannelPS_Cfg0_D( u8 MAAdimms, u8 Speed, u8 MAAload, *AddrTmgCTL = 0x002F2F00; else if (Speed == 4) *AddrTmgCTL = 0x00202520; - else if (Speed == 4) + else if (Speed == 5) *AddrTmgCTL = 0x002F2020; else *AddrTmgCTL = 0x002F2F2F; @@ -130,7 +130,7 @@ static void Get_ChannelPS_Cfg0_D( u8 MAAdimms, u8 Speed, u8 MAAload, *CMDmode = 2; *AddrTmgCTL = 0x00202520; *ODC_CTL = 0x00113222; - } else if(Speed == 4) { + } else if(Speed == 5) { *CMDmode = 2; *AddrTmgCTL = 0x002F2020; *ODC_CTL = 0x00113222; |