CorebootModulePkg: Fix GCC build failure.
This patch fixed a GCC build failure issue. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Dong <guo.dong@intel.com> Reviewed-by: Maurice Ma <maurice.ma@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17519 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -63,7 +63,7 @@ CbParseCbMemTable (
|
|||||||
**/
|
**/
|
||||||
RETURN_STATUS
|
RETURN_STATUS
|
||||||
CbParseAcpiTable (
|
CbParseAcpiTable (
|
||||||
IN VOID* pMemTable,
|
IN VOID** pMemTable,
|
||||||
IN UINT32* pMemTableSize
|
IN UINT32* pMemTableSize
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -422,7 +422,7 @@ CbParseFadtInfo (
|
|||||||
Rsdp = NULL;
|
Rsdp = NULL;
|
||||||
Status = RETURN_SUCCESS;
|
Status = RETURN_SUCCESS;
|
||||||
|
|
||||||
Status = CbParseAcpiTable (&Rsdp, NULL);
|
Status = CbParseAcpiTable ((VOID **)&Rsdp, NULL);
|
||||||
if (RETURN_ERROR(Status)) {
|
if (RETURN_ERROR(Status)) {
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user