summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/DriverConfiguration.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/DriverConfiguration.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/DriverConfiguration.h')
-rw-r--r--MdePkg/Include/Protocol/DriverConfiguration.h19
1 files changed, 5 insertions, 14 deletions
diff --git a/MdePkg/Include/Protocol/DriverConfiguration.h b/MdePkg/Include/Protocol/DriverConfiguration.h
index 7c7eca4531..172b61ef0c 100644
--- a/MdePkg/Include/Protocol/DriverConfiguration.h
+++ b/MdePkg/Include/Protocol/DriverConfiguration.h
@@ -24,7 +24,6 @@
{ \
0x107a772b, 0xd5e1, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
}
-
typedef struct _EFI_DRIVER_CONFIGURATION_PROTOCOL EFI_DRIVER_CONFIGURATION_PROTOCOL;
@@ -153,24 +152,16 @@ EFI_STATUS
@par Protocol Description:
Used to set configuration options for a controller that an EFI Driver is managing.
- @param SetOptions Allows the use to set drivers specific configuration
- options for a controller that the driver is currently managing.
-
- @param OptionsValid Tests to see if a controller's current configuration
- options are valid.
-
- @param ForceDefaults Forces a driver to set the default configuration options
- for a controller.
-
- @param SupportedLanguages A Null-terminated ASCII string that contains one or more
- ISO 639-2 language codes. This is the list of language
- codes that this protocol supports.
-
**/
struct _EFI_DRIVER_CONFIGURATION_PROTOCOL {
EFI_DRIVER_CONFIGURATION_SET_OPTIONS SetOptions;
EFI_DRIVER_CONFIGURATION_OPTIONS_VALID OptionsValid;
EFI_DRIVER_CONFIGURATION_FORCE_DEFAULTS ForceDefaults;
+ ///
+ /// A Null-terminated ASCII string that contains one or more
+ /// ISO 639-2 language codes. This is the list of language
+ /// codes that this protocol supports.
+ ///
CHAR8 *SupportedLanguages;
};