summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/Metronome.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:05:11 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:05:11 +0000
commitcce6f7aa66125df1bddf24c122f02093d47ef204 (patch)
treece45b0a3f675f058108c69657ab14b246765b26e /MdePkg/Include/Protocol/Metronome.h
parent721b16af11941318ff27684da8bb7a90c9118385 (diff)
downloadedk2-platforms-cce6f7aa66125df1bddf24c122f02093d47ef204.tar.xz
Fix doxygen comment for structure and macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6096 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/Metronome.h')
-rw-r--r--MdePkg/Include/Protocol/Metronome.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/MdePkg/Include/Protocol/Metronome.h b/MdePkg/Include/Protocol/Metronome.h
index 41fde89ad2..58a9c5ff36 100644
--- a/MdePkg/Include/Protocol/Metronome.h
+++ b/MdePkg/Include/Protocol/Metronome.h
@@ -57,9 +57,6 @@ EFI_STATUS
IN UINT32 TickNumber
);
-//
-//
-
/**
Interface stucture for the Metronome Architectural Protocol.
@@ -74,17 +71,17 @@ EFI_STATUS
function and the first tick is between 0 and TickPeriod 100 nS
units. If you want to guarantee that at least TickPeriod time
has elapsed, wait for two ticks.
-
- @param TickPeriod
- The period of platform's known time source in 100 nS units.
- This value on any platform must be at least 10 uS, and must not
- exceed 200 uS. The value in this field is a constant that must
- not be modified after the Metronome architectural protocol is
- installed. All consumers must treat this as a read-only field.
-
**/
struct _EFI_METRONOME_ARCH_PROTOCOL {
EFI_METRONOME_WAIT_FOR_TICK WaitForTick;
+
+ ///
+ /// The period of platform's known time source in 100 nS units.
+ /// This value on any platform must be at least 10 uS, and must not
+ /// exceed 200 uS. The value in this field is a constant that must
+ /// not be modified after the Metronome architectural protocol is
+ /// installed. All consumers must treat this as a read-only field.
+ ///
UINT32 TickPeriod;
};