diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-05-22 23:24:46 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-24 09:35:33 +0000 |
commit | f0a576595a12d0d3ba8dd0fc003027dd35d7a522 (patch) | |
tree | 8e88558c693bb609263fae8073f535df0f938099 /src/northbridge/amd | |
parent | 7a5d4e2b4a5acbdad42c36cb4c33aab3b95af385 (diff) | |
download | coreboot-f0a576595a12d0d3ba8dd0fc003027dd35d7a522.tar.gz coreboot-f0a576595a12d0d3ba8dd0fc003027dd35d7a522.tar.bz2 coreboot-f0a576595a12d0d3ba8dd0fc003027dd35d7a522.zip |
nb/amd/amdmct/mct/mctpro_d.c: Remove variable set but not used
Change-Id: Ic2f2788142329e2e4d04b531805a32d4dcaa293c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32949
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/amd')
-rw-r--r-- | src/northbridge/amd/amdmct/mct/mctpro_d.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/northbridge/amd/amdmct/mct/mctpro_d.c b/src/northbridge/amd/amdmct/mct/mctpro_d.c index 0acb6f4ff493..83937330f846 100644 --- a/src/northbridge/amd/amdmct/mct/mctpro_d.c +++ b/src/northbridge/amd/amdmct/mct/mctpro_d.c @@ -280,7 +280,6 @@ void mct_BeforeDramInit_D(struct DCTStatStruc *pDCTstat, u32 dct) u32 Speed; u32 ch, ch_start, ch_end; u32 index_reg; - u32 index; u32 dev; u32 val; @@ -297,7 +296,7 @@ void mct_BeforeDramInit_D(struct DCTStatStruc *pDCTstat, u32 dct) ch_end = dct+1; } dev = pDCTstat->dev_dct; - index = 0x0D00E001; + for (ch = ch_start; ch < ch_end; ch++) { index_reg = 0x98 + 0x100 * ch; val = Get_NB32_index(dev, index_reg, 0x0D00E001); |