[coreboot] New patch to review for coreboot: 5dd9833 Supermicro H8QGI: Pass callout pointer to AmdReadEventLog function

Aladyshev Konstantin (kostr@list.ru) gerrit at coreboot.org
Thu Dec 20 18:38:06 CET 2012


Aladyshev Konstantin (kostr at list.ru) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2064

-gerrit

commit 5dd983306d5e335059a5a1fee2b7b0a673156d86
Author: Aladyshev Konstantin <aladyshev at nicevt.ru>
Date:   Wed Dec 19 05:53:53 2012 +0400

    Supermicro H8QGI: Pass callout pointer to AmdReadEventLog function
    
    I have issues when AmdReadEventLog function tries to use BiosCallouts interface.
    So it is necessary to provide callout pointer to this function.
    
    Change-Id: I4080e5f07d5d28c41688b2a7deff944b7a0f7bf7
    Signed-off-by: Aladyshev Konstantin <aladyshev at nicevt.ru>
---
 src/mainboard/supermicro/h8qgi/agesawrapper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mainboard/supermicro/h8qgi/agesawrapper.c b/src/mainboard/supermicro/h8qgi/agesawrapper.c
index aeeab11..d354c37 100644
--- a/src/mainboard/supermicro/h8qgi/agesawrapper.c
+++ b/src/mainboard/supermicro/h8qgi/agesawrapper.c
@@ -1174,7 +1174,7 @@ UINT32 agesawrapper_amdreadeventlog(UINT8 HeapStatus)
 			&(AmdEventParams.StdHeader));
 
 	AmdEventParams.StdHeader.AltImageBasePtr = 0;
-	AmdEventParams.StdHeader.CalloutPtr = NULL;
+	AmdEventParams.StdHeader.CalloutPtr = (CALLOUT_ENTRY) &GetBiosCallout;
 	AmdEventParams.StdHeader.Func = 0;
 	AmdEventParams.StdHeader.ImageBasePtr = 0;
 	/* I have to know the current HeapStatus to Locate the EventLogHeapPointer */



More information about the coreboot mailing list