Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/20971
Change subject: nb/amd/mct_ddr3/mct_d.c: Break out of allow_config_restore loop
......................................................................
nb/amd/mct_ddr3/mct_d.c: Break out of allow_config_restore loop
No need to further search for non matching SPD when first one is
found.
Change-Id: Ie669d1bc38411e40ab95c28b17ee8818874dc741
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/northbridge/amd/amdmct/mct_ddr3/mct_d.c
1 file changed, 5 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/20971/1
diff --git a/src/northbridge/amd/amdmct/mct_ddr3/mct_d.c b/src/northbridge/amd/amdmct/mct_ddr3/mct_d.c
index da803ff..e4612f1 100644
--- a/src/northbridge/amd/amdmct/mct_ddr3/mct_d.c
+++ b/src/northbridge/amd/amdmct/mct_ddr3/mct_d.c
@@ -2715,9 +2715,12 @@
struct DCTStatStruc *pDCTstat;
pDCTstat = pDCTstatA + Node;
- if (pDCTstat->NodePresent)
- if (!pDCTstat->spd_data.nvram_spd_match)
+ if (pDCTstat->NodePresent) {
+ if (!pDCTstat->spd_data.nvram_spd_match) {
allow_config_restore = 0;
+ break;
+ }
+ }
}
/* FIXME
--
To view, visit https://review.coreboot.org/20971
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie669d1bc38411e40ab95c28b17ee8818874dc741
Gerrit-Change-Number: 20971
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/20970
to look at the new patch set (#2).
Change subject: nb/amd/amdfam10/debug.c: Fix building with DEBUG_SMBUS
......................................................................
nb/amd/amdfam10/debug.c: Fix building with DEBUG_SMBUS
Was presumably missed when linking most amd fam10 files in
75a3d1fb7c: "amdfam10: Perform major include ".c" cleanup".
Change-Id: Iebe8aa1c4c3019414c6a23404cc5dc7f668cd8eb
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/northbridge/amd/amdfam10/debug.c
M src/northbridge/amd/amdfam10/debug.h
M src/northbridge/amd/amdmct/mct/mct_d.c
M src/northbridge/amd/amdmct/mct/mct_d.h
4 files changed, 9 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/20970/2
--
To view, visit https://review.coreboot.org/20970
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Iebe8aa1c4c3019414c6a23404cc5dc7f668cd8eb
Gerrit-Change-Number: 20970
Gerrit-PatchSet: 2
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>