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
This commit is contained in:
klu2
2008-06-24 07:14:18 +00:00
parent dc53faa3a2
commit 8b13229b46
98 changed files with 736 additions and 734 deletions

View File

@@ -63,7 +63,7 @@ typedef enum {
**/
typedef
EFI_STATUS
(EFIAPI *EFI_DEVICE_IO) (
(EFIAPI *EFI_DEVICE_IO)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN EFI_IO_WIDTH Width,
IN UINT64 Address,
@@ -92,7 +92,7 @@ typedef struct {
**/
typedef
EFI_STATUS
(EFIAPI *EFI_PCI_DEVICE_PATH) (
(EFIAPI *EFI_PCI_DEVICE_PATH)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN UINT64 PciAddress,
IN OUT EFI_DEVICE_PATH_PROTOCOL **PciDevicePath
@@ -124,7 +124,7 @@ typedef enum {
**/
typedef
EFI_STATUS
(EFIAPI *EFI_IO_MAP) (
(EFIAPI *EFI_IO_MAP)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN EFI_IO_OPERATION_TYPE Operation,
IN EFI_PHYSICAL_ADDRESS *HostAddress,
@@ -145,7 +145,7 @@ EFI_STATUS
**/
typedef
EFI_STATUS
(EFIAPI *EFI_IO_UNMAP) (
(EFIAPI *EFI_IO_UNMAP)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN VOID *Mapping
);
@@ -169,7 +169,7 @@ EFI_STATUS
**/
typedef
EFI_STATUS
(EFIAPI *EFI_IO_ALLOCATE_BUFFER) (
(EFIAPI *EFI_IO_ALLOCATE_BUFFER)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN EFI_ALLOCATE_TYPE Type,
IN EFI_MEMORY_TYPE MemoryType,
@@ -188,7 +188,7 @@ EFI_STATUS
**/
typedef
EFI_STATUS
(EFIAPI *EFI_IO_FLUSH) (
(EFIAPI *EFI_IO_FLUSH)(
IN EFI_DEVICE_IO_PROTOCOL *This
);
@@ -207,7 +207,7 @@ EFI_STATUS
**/
typedef
EFI_STATUS
(EFIAPI *EFI_IO_FREE_BUFFER) (
(EFIAPI *EFI_IO_FREE_BUFFER)(
IN EFI_DEVICE_IO_PROTOCOL *This,
IN UINTN Pages,
IN EFI_PHYSICAL_ADDRESS HostAddress