removed the use of PalCallStatic and changed to PalCall

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4022 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vprabhal 2007-10-05 18:48:48 +00:00
parent 71c827cafe
commit d56c53cbb9
2 changed files with 7 additions and 3 deletions

View File

@ -48,6 +48,9 @@
[LibraryClasses]
DebugLib
[LibraryClasses.Ipf]
PalCallLib
[LibraryClasses.common]
BaseLib

View File

@ -20,6 +20,7 @@
#include <Library/CacheMaintenanceLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/PalCallLib.h>
/**
Invalidates the entire instruction cache in cache coherency domain of the
@ -35,7 +36,7 @@ InvalidateInstructionCache (
VOID
)
{
PalCallStatic (NULL, 1, 1, 1, 0);
PalCall (1, 1, 1, 0);
}
/**
@ -89,7 +90,7 @@ WriteBackInvalidateDataCache (
VOID
)
{
PalCallStatic (NULL, 1, 2, 1, 0);
PalCall (1, 2, 1, 0);
}
/**
@ -146,7 +147,7 @@ WriteBackDataCache (
VOID
)
{
PalCallStatic (NULL, 1, 2, 0, 0);
PalCall (1, 2, 0, 0);
}
/**