summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/DriverDiagnostics.h
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-08 14:48:27 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-08 14:48:27 +0000
commit9319d2c2066a3798d1e2b6d29486d933896cbdb0 (patch)
tree68f32f05765592d4a26d2f588ed59488c11e344b /MdePkg/Include/Protocol/DriverDiagnostics.h
parentdb5d3dbd76b6fe8bfaf4b85de792e9e18d5175ad (diff)
downloadedk2-9319d2c2066a3798d1e2b6d29486d933896cbdb0.zip
edk2-9319d2c2066a3798d1e2b6d29486d933896cbdb0.tar.gz
edk2-9319d2c2066a3798d1e2b6d29486d933896cbdb0.tar.bz2
Add comments for most of enum data type.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6924 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/DriverDiagnostics.h')
-rw-r--r--MdePkg/Include/Protocol/DriverDiagnostics.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/MdePkg/Include/Protocol/DriverDiagnostics.h b/MdePkg/Include/Protocol/DriverDiagnostics.h
index 4c62f42..f3683f3 100644
--- a/MdePkg/Include/Protocol/DriverDiagnostics.h
+++ b/MdePkg/Include/Protocol/DriverDiagnostics.h
@@ -26,8 +26,19 @@
typedef struct _EFI_DRIVER_DIAGNOSTICS_PROTOCOL EFI_DRIVER_DIAGNOSTICS_PROTOCOL;
typedef enum {
+ ///
+ /// Performs standard diagnostics on the controller.
+ ///
EfiDriverDiagnosticTypeStandard = 0,
+ ///
+ /// This is an optional diagnostic type that performs diagnostics on the controller that may
+ /// take an extended amount of time to execute.
+ ///
EfiDriverDiagnosticTypeExtended = 1,
+ ///
+ /// This is an optional diagnostic type that performs diagnostics on the controller that are
+ /// suitable for a manufacturing and test environment.
+ ///
EfiDriverDiagnosticTypeManufacturing= 2,
EfiDriverDiagnosticTypeMaximum
} EFI_DRIVER_DIAGNOSTIC_TYPE;