summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Pi/PiMultiPhase.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-24 04:37:24 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-24 04:37:24 +0000
commitdc53faa3a2059c75483fe7e5756d2da11fad598c (patch)
treeda56e1871f2c1e873eda5c23bd82b14c7aa8e1d5 /MdePkg/Include/Pi/PiMultiPhase.h
parent6de794cd4a794aa4c8008c408fde2ba0582d07d4 (diff)
downloadedk2-platforms-dc53faa3a2059c75483fe7e5756d2da11fad598c.tar.xz
Fix doxygen issue:
1) comment for structure should be in doxygen format, such as /// , /**, /*! 2) comment for data field of structure should in doxygen format. 3) should not exist blank between ") (" when declaring a type of function point. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5363 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Pi/PiMultiPhase.h')
-rw-r--r--MdePkg/Include/Pi/PiMultiPhase.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/MdePkg/Include/Pi/PiMultiPhase.h b/MdePkg/Include/Pi/PiMultiPhase.h
index 3329121b72..b49971f813 100644
--- a/MdePkg/Include/Pi/PiMultiPhase.h
+++ b/MdePkg/Include/Pi/PiMultiPhase.h
@@ -30,9 +30,9 @@
#define EFI_NOT_AVAILABLE_YET EFIERR (32)
-//
-// Status Code Type Definition
-//
+///
+/// Status Code Type Definition
+///
typedef UINT32 EFI_STATUS_CODE_TYPE;
//
@@ -67,10 +67,11 @@ typedef UINT32 EFI_STATUS_CODE_TYPE;
#define EFI_ERROR_UNRECOVERED 0x90000000
#define EFI_ERROR_UNCONTAINED 0xa0000000
-//
-// Status Code Value Definition
-//
+///
+/// Status Code Value Definition
+///
typedef UINT32 EFI_STATUS_CODE_VALUE;
+
//
// A Status Code Value is made up of the class, subclass, and
// an operation.
@@ -78,11 +79,12 @@ typedef UINT32 EFI_STATUS_CODE_VALUE;
#define EFI_STATUS_CODE_CLASS_MASK 0xFF000000
#define EFI_STATUS_CODE_SUBCLASS_MASK 0x00FF0000
#define EFI_STATUS_CODE_OPERATION_MASK 0x0000FFFF
-//
-// Definition of Status Code extended data header.
-// The data will follow HeaderSize bytes from the beginning of
-// the structure and is Size bytes long.
-//
+
+///
+/// Definition of Status Code extended data header.
+/// The data will follow HeaderSize bytes from the beginning of
+/// the structure and is Size bytes long.
+///
typedef struct {
UINT16 HeaderSize;
UINT16 Size;