summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/IndustryStandard/Atapi.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-08-14 03:21:03 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-08-14 03:21:03 +0000
commit1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a (patch)
tree844992a2b181658fafa5ce999c6aaa1d9814857b /MdePkg/Include/IndustryStandard/Atapi.h
parent3566565aa46899c26d5d8243966643f9a89a2133 (diff)
downloadedk2-1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a.tar.gz
edk2-1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a.tar.bz2
edk2-1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a.zip
Use doxygen comment style for document entity such as struct, enum, variable that use /// but not //
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5645 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/IndustryStandard/Atapi.h')
-rw-r--r--MdePkg/Include/IndustryStandard/Atapi.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/MdePkg/Include/IndustryStandard/Atapi.h b/MdePkg/Include/IndustryStandard/Atapi.h
index f73805664a..1c18441858 100644
--- a/MdePkg/Include/IndustryStandard/Atapi.h
+++ b/MdePkg/Include/IndustryStandard/Atapi.h
@@ -20,9 +20,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#pragma pack(1)
-//
-// ATA_IDENTIFY_DATA is defined in ATA-5
-//
+///
+/// ATA_IDENTIFY_DATA is defined in ATA-5
+///
typedef struct {
UINT16 config; /* General Configuration */
UINT16 cylinders; /* Number of Cylinders */
@@ -75,9 +75,9 @@ typedef struct {
UINT16 reserved_160_255[96];
} ATA_IDENTIFY_DATA;
-//
-// ATAPI_IDENTIFY_DATA is defined in ATA-6
-//
+///
+/// ATAPI_IDENTIFY_DATA is defined in ATA-6
+///
typedef struct {
UINT16 config; // General Configuration
UINT16 obsolete_1;
@@ -355,10 +355,10 @@ typedef struct {
UINT8 reserved_11;
} ATAPI_MODE_SENSE_CMD;
-//
-// ATAPI_PACKET_COMMAND is not defined in ATA specification.
-// We add it here for the convenience for ATA/ATAPI module writer.
-//
+///
+/// ATAPI_PACKET_COMMAND is not defined in ATA specification.
+/// We add it here for the convenience for ATA/ATAPI module writer.
+///
typedef union {
UINT16 Data16[6];
ATAPI_TEST_UNIT_READY_CMD TestUnitReady;