summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Ppi/Stall.h
diff options
context:
space:
mode:
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-23 07:55:57 +0000
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-23 07:55:57 +0000
commit13c3803149943a2a54553eee6e121873dab05acd (patch)
tree8acb63b71b88ce47ed3630460bf89aa396f043d2 /MdePkg/Include/Ppi/Stall.h
parentc7c308ad48bbe8a13f9b047d15af8f7305d364d1 (diff)
downloadedk2-platforms-13c3803149943a2a54553eee6e121873dab05acd.tar.xz
Refine code for MdePkg/Include/Ppi according to code review comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5951 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Ppi/Stall.h')
-rw-r--r--MdePkg/Include/Ppi/Stall.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/MdePkg/Include/Ppi/Stall.h b/MdePkg/Include/Ppi/Stall.h
index 41031744b3..710b3b88b2 100644
--- a/MdePkg/Include/Ppi/Stall.h
+++ b/MdePkg/Include/Ppi/Stall.h
@@ -46,19 +46,17 @@ EFI_STATUS
IN UINTN Microseconds
);
-/**
- @par Ppi Description:
- This service provides a simple, blocking stall with platform-specific resolution.
-
- @param Resolution
- The resolution in microseconds of the stall services.
-
- @param Stall
- The actual stall procedure call.
-
-**/
+///
+/// This service provides a simple, blocking stall with platform-specific resolution.
+///
struct _EFI_PEI_STALL_PPI {
+ ///
+ /// The resolution in microseconds of the stall services.
+ ///
UINTN Resolution;
+ ///
+ /// The actual stall procedure call.
+ ///
EFI_PEI_STALL Stall;
};