summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/SerialIo.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:17:35 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:17:35 +0000
commit1f08a159034549216eccfd533b50b712d944d844 (patch)
treec4a4b16daa6f02b29896c96007b94112ae51d54c /MdePkg/Include/Protocol/SerialIo.h
parentcce6f7aa66125df1bddf24c122f02093d47ef204 (diff)
downloadedk2-platforms-1f08a159034549216eccfd533b50b712d944d844.tar.xz
Fix doxygen comment for structure and macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6097 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/SerialIo.h')
-rw-r--r--MdePkg/Include/Protocol/SerialIo.h36
1 files changed, 5 insertions, 31 deletions
diff --git a/MdePkg/Include/Protocol/SerialIo.h b/MdePkg/Include/Protocol/SerialIo.h
index 5c69f8996e..f057cffea0 100644
--- a/MdePkg/Include/Protocol/SerialIo.h
+++ b/MdePkg/Include/Protocol/SerialIo.h
@@ -271,39 +271,13 @@ typedef struct {
The Serial I/O protocol is used to communicate with UART-style serial devices.
These can be standard UART serial ports in PC-AT systems, serial ports attached
to a USB interface, or potentially any character-based I/O device.
-
- @param Revision
- The revision to which the EFI_SERIAL_IO_PROTOCOL adheres. All future revisions
- must be backwards compatible. If a future version is not back wards compatible,
- it is not the same GUID.
-
- @param Reset
- Resets the hardware device.
-
- @param SetAttributes
- Sets communication parameters for a serial device. These include
- the baud rate, receive FIFO depth, transmit/receive time out, parity, data bits,
- and stop bit attributes.
-
- @param SetControl
- Sets the control bits on a serial device. These include Request to
- Send and Data Terminal Ready.
-
- @param GetControl
- Reads the status of the control bits on a serial device. These include
- Clear to Send, Data Set Ready, Ring Indicator, and Carrier Detect.
-
- @param Write
- Sends a buffer of characters to a serial device.
-
- @param Read
- Receives a buffer of characters from a serial device.
-
- @param Mode
- Pointer to SERIAL_IO_MODE data.
-
**/
struct _EFI_SERIAL_IO_PROTOCOL {
+ ///
+ /// The revision to which the EFI_SERIAL_IO_PROTOCOL adheres. All future revisions
+ /// must be backwards compatible. If a future version is not back wards compatible,
+ /// it is not the same GUID.
+ ///
UINT32 Revision;
EFI_SERIAL_RESET Reset;
EFI_SERIAL_SET_ATTRIBUTES SetAttributes;