diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 07:42:38 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 07:42:38 +0000 |
commit | e53a6ea90e32b1ed2377fbf3e7fce0dcf372175d (patch) | |
tree | 64e428b0d7c901d32b05c4ca095e710ab26ac3bf /MdeModulePkg/Library/GenericBdsLib/BdsBoot.c | |
parent | 9eb7382f73a1b000aca55cd0dc5b61998ec62f52 (diff) | |
download | edk2-platforms-e53a6ea90e32b1ed2377fbf3e7fce0dcf372175d.tar.xz |
remove EFI_EVENT_ alias, replace them with EVT_
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5813 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/GenericBdsLib/BdsBoot.c')
-rw-r--r-- | MdeModulePkg/Library/GenericBdsLib/BdsBoot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c b/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c index c3294fa497..8a7c0d7ad6 100644 --- a/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c +++ b/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c @@ -120,8 +120,8 @@ BdsLibBootViaBootOption ( //
// Notes: this code can be remove after the s3 script table
- // hook on the event EFI_EVENT_SIGNAL_READY_TO_BOOT or
- // EFI_EVENT_SIGNAL_LEGACY_BOOT
+ // hook on the event EVT_SIGNAL_READY_TO_BOOT or
+ // EVT_SIGNAL_LEGACY_BOOT
//
Status = gBS->LocateProtocol (&gEfiAcpiS3SaveProtocolGuid, NULL, (VOID **) &AcpiS3Save);
if (!EFI_ERROR (Status)) {
@@ -142,7 +142,7 @@ BdsLibBootViaBootOption ( }
}
//
- // Signal the EFI_EVENT_SIGNAL_READY_TO_BOOT event
+ // Signal the EVT_SIGNAL_READY_TO_BOOT event
//
EfiSignalEventReadyToBoot();
|