AGESA BiosCallouts: Remove cast
This cast only hides errors in matching the API properly. Change-Id: Ic396dfb572a50ac5ce5c1c83424e1f17f15bad1d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/12270 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
@@ -49,7 +49,7 @@ AGESA_STATUS agesawrapper_fchs3earlyrestore (void)
|
||||
StdHeader.HeapStatus = HEAP_SYSTEM_MEM;
|
||||
StdHeader.HeapBasePtr = (uintptr_t) GetHeapBase() + 0x10;
|
||||
StdHeader.AltImageBasePtr = 0;
|
||||
StdHeader.CalloutPtr = (CALLOUT_ENTRY) &GetBiosCallout;
|
||||
StdHeader.CalloutPtr = &GetBiosCallout;
|
||||
StdHeader.Func = 0;
|
||||
StdHeader.ImageBasePtr = 0;
|
||||
|
||||
@@ -69,7 +69,7 @@ AGESA_STATUS agesawrapper_fchs3laterestore (void)
|
||||
StdHeader.HeapStatus = HEAP_SYSTEM_MEM;
|
||||
StdHeader.HeapBasePtr = (uintptr_t) GetHeapBase() + 0x10;
|
||||
StdHeader.AltImageBasePtr = 0;
|
||||
StdHeader.CalloutPtr = (CALLOUT_ENTRY) &GetBiosCallout;
|
||||
StdHeader.CalloutPtr = &GetBiosCallout;
|
||||
StdHeader.Func = 0;
|
||||
StdHeader.ImageBasePtr = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user