initplat.c 440 B

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