1 /*++
2 
3 Copyright (c) 1999  Intel Corporation
4 
5 Module Name:
6 
7     initplat.c
8 
9 Abstract:
10 
11     Functions to make SAL and PAL proc calls
12 
13 Revision History
14 
15 --*/
16 #include "lib.h"
17 
18 //#include "palproc.h"
19 
20 VOID
InitializeLibPlatform(IN EFI_HANDLE ImageHandle EFI_UNUSED,IN EFI_SYSTEM_TABLE * SystemTable EFI_UNUSED)21 InitializeLibPlatform (
22     IN EFI_HANDLE           ImageHandle EFI_UNUSED,
23     IN EFI_SYSTEM_TABLE     *SystemTable EFI_UNUSED
24     )
25 {
26     PLABEL  SalPlabel;
27     UINT64  PalEntry;
28 
29     LibInitSalAndPalProc (&SalPlabel, &PalEntry);
30 }
31