summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/UefiLib.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-04-22 06:12:08 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-04-22 06:12:08 +0000
commit01aef47bbe11b3961da5136b064d947540a38060 (patch)
tree7955cd56359ba1a460f1bb2c7f856486d6228897 /MdePkg/Include/Library/UefiLib.h
parent7459094d5f6904a0c8445d97519f4a99b654ef43 (diff)
downloadedk2-platforms-01aef47bbe11b3961da5136b064d947540a38060.tar.xz
Fix missing include header file and fix typo in comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5110 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/UefiLib.h')
-rw-r--r--MdePkg/Include/Library/UefiLib.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/MdePkg/Include/Library/UefiLib.h b/MdePkg/Include/Library/UefiLib.h
index bbc4acab33..7daa23be48 100644
--- a/MdePkg/Include/Library/UefiLib.h
+++ b/MdePkg/Include/Library/UefiLib.h
@@ -144,9 +144,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
@@ -180,7 +178,6 @@ EfiInitializeLock (
priority level. Since there is no preemption or multiprocessor support in EFI,
acquiring the lock only consists of raising to the locks TPL.
- @param Lock A pointer to the lock data structure to initialize.
@param Priority The task priority level of the lock.
@return The lock.
@@ -220,7 +217,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 A pointer to the lock to acquire.
**/
VOID
@@ -302,7 +299,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.
@@ -676,7 +673,7 @@ EfiCreateEventLegacyBootEx (
the EDK/EFI 1.10 form and EDKII/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.
@@ -701,7 +698,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.