summaryrefslogtreecommitdiff
path: root/OldMdePkg/Library/UefiLib/UefiNotTiano.c
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-25 08:54:54 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-25 08:54:54 +0000
commit93b0fbc8a1731a3c4ae789bebac4b1d8966719c3 (patch)
tree800e8a6512892d5de738f0c86bf8f5bc3ab9063b /OldMdePkg/Library/UefiLib/UefiNotTiano.c
parenta197b1ad17703a117e5b67c50c311325a2b3bdcb (diff)
downloadedk2-platforms-93b0fbc8a1731a3c4ae789bebac4b1d8966719c3.tar.xz
Add some definitions for efi event in Uefi/UefiSpec.h to follow spec.
Changed old event definitions reference to these new event definitions. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2729 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OldMdePkg/Library/UefiLib/UefiNotTiano.c')
-rw-r--r--OldMdePkg/Library/UefiLib/UefiNotTiano.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/OldMdePkg/Library/UefiLib/UefiNotTiano.c b/OldMdePkg/Library/UefiLib/UefiNotTiano.c
index 081e25439e..d588ecea8e 100644
--- a/OldMdePkg/Library/UefiLib/UefiNotTiano.c
+++ b/OldMdePkg/Library/UefiLib/UefiNotTiano.c
@@ -59,7 +59,7 @@ EfiCreateEventLegacyBoot (
)
{
return EfiCreateEventLegacyBootEx (
- EFI_TPL_CALLBACK,
+ TPL_CALLBACK,
InternalEmptyFuntion,
NULL,
LegacyBootEvent
@@ -114,7 +114,7 @@ EfiCreateEventLegacyBootEx (
// For UEFI 2.0 and the future use an Event Group
//
Status = gBS->CreateEventEx (
- EVENT_NOTIFY_SIGNAL,
+ EVT_NOTIFY_SIGNAL,
NotifyTpl,
NotifyFunction,
NotifyContext,
@@ -149,7 +149,7 @@ EfiCreateEventReadyToBoot (
)
{
return EfiCreateEventReadyToBootEx (
- EFI_TPL_CALLBACK,
+ TPL_CALLBACK,
InternalEmptyFuntion,
NULL,
ReadyToBootEvent
@@ -204,7 +204,7 @@ EfiCreateEventReadyToBootEx (
// For UEFI 2.0 and the future use an Event Group
//
Status = gBS->CreateEventEx (
- EVENT_NOTIFY_SIGNAL,
+ EVT_NOTIFY_SIGNAL,
NotifyTpl,
NotifyFunction,
NotifyContext,