summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Protocol/DriverSupportedEfiVersion.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/DriverSupportedEfiVersion.h
parent8b6c989b0dce2e63a06139f37be0e062588e8f04 (diff)
downloadedk2-3354353d4d82fb12c073564ab41099ca75d02839.tar.gz
edk2-3354353d4d82fb12c073564ab41099ca75d02839.tar.bz2
edk2-3354353d4d82fb12c073564ab41099ca75d02839.zip
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/DriverSupportedEfiVersion.h')
-rw-r--r--MdePkg/Include/Protocol/DriverSupportedEfiVersion.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h b/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h
index 3bd3e00bae..3592198cf7 100644
--- a/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h
+++ b/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h
@@ -29,19 +29,17 @@
specification it conforms to. This protocol must be placed on
the drivers image handle when the driver's entry point is
called.
-
- @param Length The size, in bytes, of the entire structure.
- Future versions of this specification may grow
- the size of the structure.
-
- @param FirmwareVersion The version of the EFI specification
- that this driver conforms to.
- EFI_2_10_SYSTEM_TABLE_REVISION for this
- version of this specification.
-
**/
typedef struct _EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL {
+ ///
+ /// The size, in bytes, of the entire structure. Future versions of this
+ /// specification may grow the size of the structure.
+ ///
UINT32 Length;
+ ///
+ /// The version of the EFI specification that this driver conforms to.
+ /// EFI_2_10_SYSTEM_TABLE_REVISION for this version of this specification.
+ ///
UINT32 FirmwareVersion;
} EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL;