summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CorebootModulePkg/Include/Library/CbParseLib.h2
-rw-r--r--CorebootModulePkg/Library/CbParseLib/CbParseLib.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/CorebootModulePkg/Include/Library/CbParseLib.h b/CorebootModulePkg/Include/Library/CbParseLib.h
index 034574f5d..36727d3f5 100644
--- a/CorebootModulePkg/Include/Library/CbParseLib.h
+++ b/CorebootModulePkg/Include/Library/CbParseLib.h
@@ -63,7 +63,7 @@ CbParseCbMemTable (
**/
RETURN_STATUS
CbParseAcpiTable (
- IN VOID* pMemTable,
+ IN VOID** pMemTable,
IN UINT32* pMemTableSize
);
diff --git a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c
index df02e58cb..66374b5a3 100644
--- a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c
+++ b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c
@@ -422,7 +422,7 @@ CbParseFadtInfo (
Rsdp = NULL;
Status = RETURN_SUCCESS;
- Status = CbParseAcpiTable (&Rsdp, NULL);
+ Status = CbParseAcpiTable ((VOID **)&Rsdp, NULL);
if (RETURN_ERROR(Status)) {
return Status;
}