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