summaryrefslogtreecommitdiffstats
path: root/MdePkg
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-28 06:59:47 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-28 06:59:47 +0000
commit8048b3f575142b793843a8fc8f31f47ae8eaad06 (patch)
tree6f4b72e41b144fab8586ad5cb21157dd1275cb7f /MdePkg
parentd16ce4dd119a5d8e2d6438331da81878a49367cc (diff)
downloadedk2-8048b3f575142b793843a8fc8f31f47ae8eaad06.tar.gz
edk2-8048b3f575142b793843a8fc8f31f47ae8eaad06.tar.bz2
edk2-8048b3f575142b793843a8fc8f31f47ae8eaad06.zip
Use doxygen style comments for enumration value.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6062 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Include/Protocol/Usb2HostController.h65
1 files changed, 30 insertions, 35 deletions
diff --git a/MdePkg/Include/Protocol/Usb2HostController.h b/MdePkg/Include/Protocol/Usb2HostController.h
index ec2415d1fa..d8b1f85a81 100644
--- a/MdePkg/Include/Protocol/Usb2HostController.h
+++ b/MdePkg/Include/Protocol/Usb2HostController.h
@@ -141,43 +141,38 @@ EFI_STATUS
);
/**
-
- @param EfiUsbHcStateHalt The host controller is in halt
- state. No USB transactions can occur
- while in this state. The host
- controller can enter this state for
- three reasons: 1) After host
- controller hardware reset. 2)
- Explicitly set by software. 3)
- Triggered by a fatal error such as
- consistency check failure.
-
-
- @param EfiUsbHcStateOperational The host controller is in an
- operational state. When in
- this state, the host
- controller can execute bus
- traffic. This state must be
- explicitly set to enable the
- USB bus traffic.
-
-
- @param EfiUsbHcStateSuspend The host controller is in the
- suspend state. No USB
- transactions can occur while in
- this state. The host controller
- enters this state for the
- following reasons: 1) Explicitly
- set by software. 2) Triggered
- when there is no bus traffic for
- 3 microseconds.
-
+ Enumration value for status of USB HC.
**/
typedef enum {
- EfiUsbHcStateHalt,
- EfiUsbHcStateOperational,
- EfiUsbHcStateSuspend,
- EfiUsbHcStateMaximum
+ EfiUsbHcStateHalt, ///< The host controller is in halt
+ ///< state. No USB transactions can occur
+ ///< while in this state. The host
+ ///< controller can enter this state for
+ ///< three reasons: 1) After host
+ ///< controller hardware reset. 2)
+ ///< Explicitly set by software. 3)
+ ///< Triggered by a fatal error such as
+ ///< consistency check failure.
+
+ EfiUsbHcStateOperational, ///< The host controller is in an
+ ///< operational state. When in
+ ///< this state, the host
+ ///< controller can execute bus
+ ///< traffic. This state must be
+ ///< explicitly set to enable the
+ ///< USB bus traffic.
+
+ EfiUsbHcStateSuspend, ///< The host controller is in the
+ ///< suspend state. No USB
+ ///< transactions can occur while in
+ ///< this state. The host controller
+ ///< enters this state for the
+ ///< following reasons: 1) Explicitly
+ ///< set by software. 2) Triggered
+ ///< when there is no bus traffic for
+ ///< 3 microseconds.
+
+ EfiUsbHcStateMaximum ///< Maximum value for enumration value of HC status.
} EFI_USB_HC_STATE;
/**