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 /DuetPkg | |
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 'DuetPkg')
-rw-r--r-- | DuetPkg/FSVariable/FileStorage.c | 2 | ||||
-rw-r--r-- | DuetPkg/FvbRuntimeService/FWBlockService.c | 2 | ||||
-rw-r--r-- | DuetPkg/Library/DuetBdsLib/BdsPlatform.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/DuetPkg/FSVariable/FileStorage.c b/DuetPkg/FSVariable/FileStorage.c index c4c239a4fc..3588f3ecbc 100644 --- a/DuetPkg/FSVariable/FileStorage.c +++ b/DuetPkg/FSVariable/FileStorage.c @@ -266,7 +266,7 @@ FileStorageConstructor ( // add notify on SFS's installation.
Status = gBS->CreateEvent (
- EFI_EVENT_NOTIFY_SIGNAL,
+ EVT_NOTIFY_SIGNAL,
TPL_CALLBACK,
OnSimpleFileSystemInstall,
Dev,
diff --git a/DuetPkg/FvbRuntimeService/FWBlockService.c b/DuetPkg/FvbRuntimeService/FWBlockService.c index dbce179d65..b0ac93f3f5 100644 --- a/DuetPkg/FvbRuntimeService/FWBlockService.c +++ b/DuetPkg/FvbRuntimeService/FWBlockService.c @@ -1511,7 +1511,7 @@ FvbInstallSfsNotify ( EFI_EVENT Event;
Status = gBS->CreateEvent (
- EFI_EVENT_NOTIFY_SIGNAL,
+ EVT_NOTIFY_SIGNAL,
TPL_CALLBACK,
OnSimpleFileSystemInstall,
NULL,
diff --git a/DuetPkg/Library/DuetBdsLib/BdsPlatform.c b/DuetPkg/Library/DuetBdsLib/BdsPlatform.c index bf806e3615..b8730a8bcf 100644 --- a/DuetPkg/Library/DuetBdsLib/BdsPlatform.c +++ b/DuetPkg/Library/DuetBdsLib/BdsPlatform.c @@ -1189,7 +1189,7 @@ Returns: // Create a 300ms duration event to ensure user has enough input time to enter Setup
//
Status = gBS->CreateEvent (
- EFI_EVENT_TIMER,
+ EVT_TIMER,
0,
NULL,
NULL,
|