summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/Usb2HostController.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:24:37 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-09 19:24:37 +0000
commit258cce138272fc013a723040691b37294e473a37 (patch)
tree1972e933d5e6e7413aca3a1d584499c0b71e477e /MdePkg/Include/Protocol/Usb2HostController.h
parent1f08a159034549216eccfd533b50b712d944d844 (diff)
downloadedk2-258cce138272fc013a723040691b37294e473a37.zip
edk2-258cce138272fc013a723040691b37294e473a37.tar.gz
edk2-258cce138272fc013a723040691b37294e473a37.tar.bz2
Fix doxygen comment for structure and macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6098 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/Usb2HostController.h')
-rw-r--r--MdePkg/Include/Protocol/Usb2HostController.h60
1 files changed, 12 insertions, 48 deletions
diff --git a/MdePkg/Include/Protocol/Usb2HostController.h b/MdePkg/Include/Protocol/Usb2HostController.h
index d8b1f85..22a80e5 100644
--- a/MdePkg/Include/Protocol/Usb2HostController.h
+++ b/MdePkg/Include/Protocol/Usb2HostController.h
@@ -562,54 +562,6 @@ EFI_STATUS
for a USB host controller will minimally contain an EFI_DEVICE_PATH_PROTOCOL
instance, and an EFI_USB2_HC_PROTOCOL instance.
- @param GetCapability
- Retrieves the capabilities of the USB host controller.
-
- @param Reset
- Software reset of USB.
-
- @param GetState
- Retrieves the current state of the USB host controller.
-
- @param SetState
- Sets the USB host controller to a specific state.
-
- @param ControlTransfer
- Submits a control transfer to a target USB device.
-
- @param BulkTransfer
- Submits a bulk transfer to a bulk endpoint of a USB device.
-
- @param AsyncInterruptTransfer
- Submits an asynchronous interrupt transfer to an interrupt endpoint of a USB device.
-
- @param SyncInterruptTransfer
- Submits a synchronous interrupt transfer to an interrupt endpoint of a USB device.
-
- @param IsochronousTransfer
- Submits isochronous transfer to an isochronous endpoint of a USB device.
-
- @param AsyncIsochronousTransfer
- Submits nonblocking USB isochronous transfer.
-
- @param GetRootHubPortStatus
- Retrieves the status of the specified root hub port.
-
- @param SetRootHubPortFeature
- Sets the feature for the specified root hub port.
-
- @param ClearRootHubPortFeature
- Clears the feature for the specified root hub port.
-
- @param MajorRevision
- The major revision number of the USB host controller. The revision information
- indicates the release of the Universal Serial Bus Specification with which the
- host controller is compliant.
-
- @param MinorRevision
- The minor revision number of the USB host controller. The revision information
- indicates the release of the Universal Serial Bus Specification with which the
- host controller is compliant.
**/
struct _EFI_USB2_HC_PROTOCOL {
EFI_USB2_HC_PROTOCOL_GET_CAPABILITY GetCapability;
@@ -625,7 +577,19 @@ struct _EFI_USB2_HC_PROTOCOL {
EFI_USB2_HC_PROTOCOL_GET_ROOTHUB_PORT_STATUS GetRootHubPortStatus;
EFI_USB2_HC_PROTOCOL_SET_ROOTHUB_PORT_FEATURE SetRootHubPortFeature;
EFI_USB2_HC_PROTOCOL_CLEAR_ROOTHUB_PORT_FEATURE ClearRootHubPortFeature;
+
+ ///
+ /// The major revision number of the USB host controller. The revision information
+ /// indicates the release of the Universal Serial Bus Specification with which the
+ /// host controller is compliant.
+ ///
UINT16 MajorRevision;
+
+ ///
+ /// The minor revision number of the USB host controller. The revision information
+ /// indicates the release of the Universal Serial Bus Specification with which the
+ /// host controller is compliant.
+ ///
UINT16 MinorRevision;
};