mirror of https://github.com/acidanthera/audk.git
Simplify call to FUNCTION_ENTRY_POINT() based on updates to that macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6884 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9a1d00cbb5
commit
4e2dd553a6
|
@ -473,7 +473,7 @@ CoreLoadPeImage (
|
|||
DEBUG ((DEBUG_INFO | DEBUG_LOAD,
|
||||
"Loading driver at 0x%11p EntryPoint=0x%11p ",
|
||||
(VOID *)(UINTN) Image->ImageContext.ImageAddress,
|
||||
FUNCTION_ENTRY_POINT ((UINTN) Image->ImageContext.EntryPoint)));
|
||||
FUNCTION_ENTRY_POINT (Image->ImageContext.EntryPoint)));
|
||||
|
||||
|
||||
//
|
||||
|
|
|
@ -239,7 +239,7 @@ DxeLoadCore (
|
|||
PcdGet32(PcdStatusCodeValuePeiHandoffToDxe)
|
||||
);
|
||||
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading DXE CORE at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN)DxeCoreAddress, FUNCTION_ENTRY_POINT ((UINTN) DxeCoreEntryPoint)));
|
||||
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading DXE CORE at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN)DxeCoreAddress, FUNCTION_ENTRY_POINT (DxeCoreEntryPoint)));
|
||||
|
||||
//
|
||||
// Transfer control to the DXE Core
|
||||
|
|
Loading…
Reference in New Issue