northbridge/amd/amdmct: Fix FTBFS with node interleaving enabled

This fixes errors of the form:
error: 'Dct0MemSize' may be used uninitialized in this function

Change-Id: Ifc853aea9050994f5641c57a081aa0667331c995
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/8455
Tested-by: build bot (Jenkins)
This commit is contained in:
Timothy Pearson 2015-02-14 17:41:10 -06:00 committed by Alexandru Gagniuc
parent b93dcec9f4
commit 2012b8127b
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
/* /*
* This file is part of the coreboot project. * This file is part of the coreboot project.
* *
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
* Copyright (C) 2007 Advanced Micro Devices, Inc. * Copyright (C) 2007 Advanced Micro Devices, Inc.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -27,7 +28,7 @@ void InterleaveNodes_D(struct MCTStatStruc *pMCTstat,
u8 Node; u8 Node;
u32 Base; u32 Base;
u32 MemSize, MemSize0 = 0; u32 MemSize, MemSize0 = 0;
u32 Dct0MemSize, DctSelBase, DctSelBaseOffset = 0; u32 Dct0MemSize = 0, DctSelBase, DctSelBaseOffset = 0;
u8 Nodes; u8 Nodes;
u8 NodesWmem; u8 NodesWmem;
u8 DoIntlv; u8 DoIntlv;

View File

@ -24,7 +24,7 @@ void InterleaveNodes_D(struct MCTStatStruc *pMCTstat,
u8 Node; u8 Node;
u32 Base; u32 Base;
u32 MemSize, MemSize0 = 0; u32 MemSize, MemSize0 = 0;
u32 Dct0MemSize, DctSelBase, DctSelBaseOffset = 0; u32 Dct0MemSize = 0, DctSelBase, DctSelBaseOffset = 0;
u8 Nodes; u8 Nodes;
u8 NodesWmem; u8 NodesWmem;
u8 DoIntlv; u8 DoIntlv;