summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/DeviceIo.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 18:09:49 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 18:09:49 +0000
commit3354353d4d82fb12c073564ab41099ca75d02839 (patch)
tree2a2e1b59a56d16a76e64530d3f424cad8c02e2e1 /MdePkg/Include/Protocol/DeviceIo.h
parent8b6c989b0dce2e63a06139f37be0e062588e8f04 (diff)
downloadedk2-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/DeviceIo.h')
-rw-r--r--MdePkg/Include/Protocol/DeviceIo.h38
1 files changed, 9 insertions, 29 deletions
diff --git a/MdePkg/Include/Protocol/DeviceIo.h b/MdePkg/Include/Protocol/DeviceIo.h
index 7b79d2355f..6ae0c23884 100644
--- a/MdePkg/Include/Protocol/DeviceIo.h
+++ b/MdePkg/Include/Protocol/DeviceIo.h
@@ -217,39 +217,19 @@ EFI_STATUS
@par Protocol Description:
This protocol provides the basic Memory, I/O, and PCI interfaces that
are used to abstract accesses to devices.
-
- @param Mem
- Allows reads and writes to memory mapped I/O space.
-
- @param Io
- Allows reads and writes to I/O space.
-
- @param Pci
- Allows reads and writes to PCI configuration space.
-
- @param Map
- Provides the device specific addresses needed to access system memory for DMA.
-
- @param PciDevicePath
- Provides an EFI Device Path for a PCI device with the given PCI
- configuration space address.
-
- @param Unmap
- Releases any resources allocated by Map().
-
- @param AllocateBuffer
- Allocates pages that are suitable for a common buffer mapping.
-
- @param Flush
- Flushes any posted write data to the device.
-
- @param FreeBuffer
- Free pages that were allocated with AllocateBuffer().
-
**/
struct _EFI_DEVICE_IO_PROTOCOL {
+ ///
+ /// Allows reads and writes to memory mapped I/O space.
+ ///
EFI_IO_ACCESS Mem;
+ ///
+ /// Allows reads and writes to I/O space.
+ ///
EFI_IO_ACCESS Io;
+ ///
+ /// Allows reads and writes to PCI configuration space.
+ ///
EFI_IO_ACCESS Pci;
EFI_IO_MAP Map;
EFI_PCI_DEVICE_PATH PciDevicePath;