[coreboot-gerrit] Change in coreboot[master]: soc/amd/common: Set AltImageBasePtr to 0

Martin Roth (Code Review) gerrit at coreboot.org
Tue Oct 17 00:22:05 CEST 2017


Martin Roth has uploaded this change for review. ( https://review.coreboot.org/22060


Change subject: soc/amd/common: Set AltImageBasePtr to 0
......................................................................

soc/amd/common: Set AltImageBasePtr to 0

In the original AGESA headers, AltImageBasePtr is a UINT32, so don't
set it to VOID.  0 workes for either UINT32 or VOID *, as demonstrated
by the other 7 places in this file where it's already set to 0 instead
of NULL.

Change this location to 0 to support either version of the headers.

BUG=b:64766233
TEST=Build in cros tree and upstream coreboot, with old headers
and updated headers.

Change-Id: Ib6f3883e08231a6ca896c2ee2ef631c77feafedd
Signed-off-by: Martin Roth <martinroth at google.com>
---
M src/soc/amd/common/agesawrapper.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/22060/1

diff --git a/src/soc/amd/common/agesawrapper.c b/src/soc/amd/common/agesawrapper.c
index a269130..38ca3a8 100644
--- a/src/soc/amd/common/agesawrapper.c
+++ b/src/soc/amd/common/agesawrapper.c
@@ -122,7 +122,7 @@
 
 	AmdParamStruct.AgesaFunctionName = AMD_INIT_POST;
 	AmdParamStruct.AllocationMethod = PreMemHeap;
-	AmdParamStruct.StdHeader.AltImageBasePtr = NULL;
+	AmdParamStruct.StdHeader.AltImageBasePtr = 0;
 	AmdParamStruct.StdHeader.CalloutPtr = &GetBiosCallout;
 	AmdParamStruct.StdHeader.Func = 0;
 	AmdParamStruct.StdHeader.ImageBasePtr = 0;

-- 
To view, visit https://review.coreboot.org/22060
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib6f3883e08231a6ca896c2ee2ef631c77feafedd
Gerrit-Change-Number: 22060
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth at google.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20171016/97606664/attachment.html>


More information about the coreboot-gerrit mailing list