diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-23 07:55:57 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-23 07:55:57 +0000 |
commit | 13c3803149943a2a54553eee6e121873dab05acd (patch) | |
tree | 8acb63b71b88ce47ed3630460bf89aa396f043d2 /MdePkg/Include/Ppi/Stall.h | |
parent | c7c308ad48bbe8a13f9b047d15af8f7305d364d1 (diff) | |
download | edk2-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.h | 20 |
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;
};
|