~vojtech-horky/helenos/numa

« back to all changes in this revision

Viewing changes to boot/arch/ia64/loader/gefi/lib/ia64/initplat.c

  • Committer: Martin Decky
  • Date: 2009-08-04 11:19:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20090804111919-evyclddlr3v5lhmp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
21
InitializeLibPlatform (
 
22
    IN EFI_HANDLE           ImageHandle,
 
23
    IN EFI_SYSTEM_TABLE     *SystemTable
 
24
    )
 
25
 
 
26
{
 
27
    PLABEL  SalPlabel;
 
28
    UINT64  PalEntry;
 
29
 
 
30
    LibInitSalAndPalProc (&SalPlabel, &PalEntry);
 
31
}