Revision: 17519
          http://sourceforge.net/p/edk2/code/17519
Author:   gdong1
Date:     2015-05-27 05:33:14 +0000 (Wed, 27 May 2015)
Log Message:
-----------
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 <[email protected]>
Reviewed-by: Maurice Ma <[email protected]>

Modified Paths:
--------------
    trunk/edk2/CorebootModulePkg/Include/Library/CbParseLib.h
    trunk/edk2/CorebootModulePkg/Library/CbParseLib/CbParseLib.c

Modified: trunk/edk2/CorebootModulePkg/Include/Library/CbParseLib.h
===================================================================
--- trunk/edk2/CorebootModulePkg/Include/Library/CbParseLib.h   2015-05-27 
02:48:28 UTC (rev 17518)
+++ trunk/edk2/CorebootModulePkg/Include/Library/CbParseLib.h   2015-05-27 
05:33:14 UTC (rev 17519)
@@ -63,7 +63,7 @@
 **/
 RETURN_STATUS
 CbParseAcpiTable (
-  IN VOID*      pMemTable,
+  IN VOID**     pMemTable,
   IN UINT32*    pMemTableSize
   );
   

Modified: trunk/edk2/CorebootModulePkg/Library/CbParseLib/CbParseLib.c
===================================================================
--- trunk/edk2/CorebootModulePkg/Library/CbParseLib/CbParseLib.c        
2015-05-27 02:48:28 UTC (rev 17518)
+++ trunk/edk2/CorebootModulePkg/Library/CbParseLib/CbParseLib.c        
2015-05-27 05:33:14 UTC (rev 17519)
@@ -422,7 +422,7 @@
   Rsdp = NULL;
   Status = RETURN_SUCCESS;
 
-  Status = CbParseAcpiTable (&Rsdp, NULL);
+  Status = CbParseAcpiTable ((VOID **)&Rsdp, NULL);
   if (RETURN_ERROR(Status)) {
     return Status;
   }


------------------------------------------------------------------------------
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to