Home | History | Annotate | Line # | Download | only in ia64
      1 /*	$NetBSD: initplat.c,v 1.1.1.2 2018/08/16 18:17:47 jmcneill 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 EFI_UNUSED,
     25     IN EFI_SYSTEM_TABLE     *SystemTable EFI_UNUSED
     26     )
     27 {
     28     PLABEL  SalPlabel;
     29     UINT64  PalEntry;
     30 
     31     LibInitSalAndPalProc (&SalPlabel, &PalEntry);
     32 }
     33