diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 05:52:01 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-22 05:52:01 +0000 |
commit | 7459094d5f6904a0c8445d97519f4a99b654ef43 (patch) | |
tree | a78d237c7e5252012394581f45efee6577e8173c /IntelFrameworkPkg/Library/FrameworkUefiLib | |
parent | 2a254b9046b5f33d0495a3e28deaff48cc64a76e (diff) | |
download | edk2-platforms-7459094d5f6904a0c8445d97519f4a99b654ef43.tar.xz |
Fix typo in comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5109 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Library/FrameworkUefiLib')
-rw-r--r-- | IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLib.c | 8 | ||||
-rw-r--r-- | IntelFrameworkPkg/Library/FrameworkUefiLib/UefiNotTiano.c | 4 |
2 files changed, 5 insertions, 7 deletions
diff --git a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLib.c b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLib.c index 64f7cde184..143870ae9d 100644 --- a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLib.c +++ b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiLib.c @@ -252,9 +252,7 @@ EfiNamedEventSignal ( can then immediately be restored back to the current TPL level with a call
to RestoreTPL().
- @param VOID
-
- @retvale EFI_TPL The current TPL.
+ @return The current TPL.
**/
EFI_TPL
@@ -305,7 +303,7 @@ EfiInitializeLock ( priority level of the mutual exclusion lock. Then, it places the lock in the
acquired state.
- @param Priority The task priority level of the lock.
+ @param Lock Point to EFI_LOCK instance
**/
VOID
@@ -454,7 +452,7 @@ EfiTestManagedDevice ( @param ControllerHandle A handle for a (parent) controller to test.
@param ChildHandle A child handle to test.
- @param ConsumsedGuid Supplies the protocol that the child controller
+ @param ProtocolGuid Supplies the protocol that the child controller
opens on its parent controller.
@retval EFI_SUCCESS ChildHandle is a child of the ControllerHandle.
diff --git a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiNotTiano.c b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiNotTiano.c index fbe9ef7576..067a85e719 100644 --- a/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiNotTiano.c +++ b/IntelFrameworkPkg/Library/FrameworkUefiLib/UefiNotTiano.c @@ -137,7 +137,7 @@ EfiCreateEventLegacyBootEx ( the EDK/EFI 1.10 form and EDK II/UEFI 2.0 form and allows common code to
work both ways.
- @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
+ @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
@retval EFI_SUCCESS Event was created.
@retval Other Event was not created.
@@ -170,7 +170,7 @@ EfiCreateEventReadyToBoot ( @param NotifyTpl The task priority level of the event.
@param NotifyFunction The notification function to call when the event is signaled.
@param NotifyContext The content to pass to NotifyFunction when the event is signaled.
- @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
+ @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
@retval EFI_SUCCESS Event was created.
@retval Other Event was not created.
|