CorebootModulePkg: Add EFIAPI to OnReadyToBoot to fix gcc compile fail

Make OnReadyToBoot function match the prototype in UefiLib.h. The change
only affects gcc builds because EFIAPI ABI differs from the default ABI
when building with gcc.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Scott Duplichan <scott@notabs.org>
---

Index: CorebootModulePkg/CbSupportDxe/CbSupportDxe.c
===================================================================
--- CorebootModulePkg/CbSupportDxe/CbSupportDxe.c	(revision 17108)
+++ CorebootModulePkg/CbSupportDxe/CbSupportDxe.c	(working copy)
@@ -98,9 +98,10 @@
 
 **/
 VOID
+EFIAPI
 OnReadyToBoot (
-  EFI_EVENT  Event,
-  VOID       *Context
+  IN  EFI_EVENT  Event,
+  IN  VOID       *Context
   )
 {	
 	//
