diff options
author | Guo Dong <guo.dong@intel.com> | 2015-05-20 08:29:11 +0000 |
---|---|---|
committer | gdong1 <gdong1@Edk2> | 2015-05-20 08:29:11 +0000 |
commit | 1e6c931b52591b376786c9635c4e443ed293a4da (patch) | |
tree | e7137941c37bc92d749fa3ebd4ae5f86385a164a /CorebootModulePkg | |
parent | 11e058ec75b6a51a3a63210f393677ef2230151b (diff) | |
download | edk2-platforms-1e6c931b52591b376786c9635c4e443ed293a4da.tar.xz |
CorebootModulePkg/CbParseLib: Fix coding issue in ACPI
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@17486 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'CorebootModulePkg')
-rw-r--r-- | CorebootModulePkg/Library/CbParseLib/CbParseLib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c index 77a744dc36..8890629edc 100644 --- a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c +++ b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c @@ -306,11 +306,11 @@ CbParseCbMemTable ( **/
RETURN_STATUS
CbParseAcpiTable (
- IN VOID* pMemTable,
- IN UINT32* pMemTableSize
+ IN VOID **pMemTable,
+ IN UINT32 *pMemTableSize
)
{
- return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), (VOID **)pMemTable, pMemTableSize);
+ return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), pMemTable, pMemTableSize);
}
/**
|