diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 18:09:49 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 18:09:49 +0000 |
commit | 3354353d4d82fb12c073564ab41099ca75d02839 (patch) | |
tree | 2a2e1b59a56d16a76e64530d3f424cad8c02e2e1 /MdePkg/Include/Protocol/DiskIo.h | |
parent | 8b6c989b0dce2e63a06139f37be0e062588e8f04 (diff) | |
download | edk2-platforms-3354353d4d82fb12c073564ab41099ca75d02839.tar.xz |
Fix doxygen comment for structure and macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6093 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/DiskIo.h')
-rw-r--r-- | MdePkg/Include/Protocol/DiskIo.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/MdePkg/Include/Protocol/DiskIo.h b/MdePkg/Include/Protocol/DiskIo.h index fbf4384874..23c7258434 100644 --- a/MdePkg/Include/Protocol/DiskIo.h +++ b/MdePkg/Include/Protocol/DiskIo.h @@ -101,20 +101,13 @@ EFI_STATUS /**
@par Protocol Description:
This protocol is used to abstract Block I/O interfaces.
-
- @param Revision
- The revision to which the disk I/O interface adheres. All future
- revisions must be backwards compatible. If a future version is not
- backwards compatible, it is not the same GUID.
-
- @param ReadDisk
- Reads data from the disk.
-
- @param WriteDisk
- Writes data to the disk.
-
**/
struct _EFI_DISK_IO_PROTOCOL {
+ ///
+ /// The revision to which the disk I/O interface adheres. All future
+ /// revisions must be backwards compatible. If a future version is not
+ /// backwards compatible, it is not the same GUID.
+ ///
UINT64 Revision;
EFI_DISK_READ ReadDisk;
EFI_DISK_WRITE WriteDisk;
|