diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-24 07:14:18 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-24 07:14:18 +0000 |
commit | 8b13229b469f05ec22d76098b052bd6e943fecee (patch) | |
tree | cc8b00da0509e1ffd8fb794651f2290385b899c9 /MdePkg/Include/Protocol/SerialIo.h | |
parent | dc53faa3a2059c75483fe7e5756d2da11fad598c (diff) | |
download | edk2-platforms-8b13229b469f05ec22d76098b052bd6e943fecee.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@5364 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/SerialIo.h')
-rw-r--r-- | MdePkg/Include/Protocol/SerialIo.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Protocol/SerialIo.h b/MdePkg/Include/Protocol/SerialIo.h index 5dd3aa17b9..9542ef1d94 100644 --- a/MdePkg/Include/Protocol/SerialIo.h +++ b/MdePkg/Include/Protocol/SerialIo.h @@ -95,7 +95,7 @@ typedef enum { **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_RESET) (
+(EFIAPI *EFI_SERIAL_RESET)(
IN EFI_SERIAL_IO_PROTOCOL *This
)
;
@@ -128,7 +128,7 @@ EFI_STATUS **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_SET_ATTRIBUTES) (
+(EFIAPI *EFI_SERIAL_SET_ATTRIBUTES)(
IN EFI_SERIAL_IO_PROTOCOL *This,
IN UINT64 BaudRate,
IN UINT32 ReceiveFifoDepth,
@@ -152,7 +152,7 @@ EFI_STATUS **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_SET_CONTROL_BITS) (
+(EFIAPI *EFI_SERIAL_SET_CONTROL_BITS)(
IN EFI_SERIAL_IO_PROTOCOL *This,
IN UINT32 Control
)
@@ -170,7 +170,7 @@ EFI_STATUS **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_GET_CONTROL_BITS) (
+(EFIAPI *EFI_SERIAL_GET_CONTROL_BITS)(
IN EFI_SERIAL_IO_PROTOCOL *This,
OUT UINT32 *Control
)
@@ -191,7 +191,7 @@ EFI_STATUS **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_WRITE) (
+(EFIAPI *EFI_SERIAL_WRITE)(
IN EFI_SERIAL_IO_PROTOCOL *This,
IN OUT UINTN *BufferSize,
IN VOID *Buffer
@@ -213,7 +213,7 @@ EFI_STATUS **/
typedef
EFI_STATUS
-(EFIAPI *EFI_SERIAL_READ) (
+(EFIAPI *EFI_SERIAL_READ)(
IN EFI_SERIAL_IO_PROTOCOL *This,
IN OUT UINTN *BufferSize,
OUT VOID *Buffer
|