1. Updated PalCallStatic.s in BaseCacheMaintenanceLib

2. Updated PalCallStatic.s in BaseTimerLibLocalApic

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@467 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bxing
2006-06-10 10:13:05 +00:00
parent 15176e0556
commit e65e8d103d
8 changed files with 107 additions and 125 deletions

View File

@@ -31,7 +31,8 @@ typedef struct {
} PAL_PROC_RETURN;
PAL_PROC_RETURN
CallPalProcStatic (
PalCallStatic (
IN CONST VOID *PalEntryPoint,
IN UINT64 Arg1,
IN UINT64 Arg2,
IN UINT64 Arg3,
@@ -142,11 +143,11 @@ GetPerformanceCounterProperties (
PAL_PROC_RETURN PalRet;
UINT64 BaseFrequence;
PalRet = CallPalProcStatic (13, 0, 0, 0);
PalRet = PalCallStatic (NULL, 13, 0, 0, 0);
ASSERT (PalRet.Status == 0);
BaseFrequence = PalRet.r9;
PalRet = CallPalProcStatic (14, 0, 0, 0);
PalRet = PalCallStatic (NULL, 14, 0, 0, 0);
ASSERT (PalRet.Status == 0);
*StartValue = 0;