diff options
-rw-r--r-- | CorebootModulePkg/Include/Library/CbParseLib.h | 2 | ||||
-rw-r--r-- | CorebootModulePkg/Library/CbParseLib/CbParseLib.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CorebootModulePkg/Include/Library/CbParseLib.h b/CorebootModulePkg/Include/Library/CbParseLib.h index 36727d3..034574f 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 0e11632..f4ba69f 100644 --- a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c +++ b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c @@ -283,11 +283,11 @@ CbParseCbMemTable ( **/
RETURN_STATUS
CbParseAcpiTable (
- IN VOID** pMemTable,
+ IN VOID* pMemTable,
IN UINT32* pMemTableSize
)
{
- return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), pMemTable, pMemTableSize);
+ return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), (VOID **)pMemTable, pMemTableSize);
}
/**
|