diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-23 09:15:17 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-23 09:15:17 +0000 |
commit | f176220269d1ae88a7a2dceba426153013351f35 (patch) | |
tree | 27327aa6115b9f19bdd1dcff7d3afcb3ec72e23c /MdePkg/Include | |
parent | 700279a971c1f603a72a45455be4b4f842ce39d9 (diff) | |
download | edk2-platforms-f176220269d1ae88a7a2dceba426153013351f35.tar.xz |
Modify the EFI_USB_DATA_DIRECTION according to UEFI specification 2.1 page 708.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2283 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/IndustryStandard/Usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/IndustryStandard/Usb.h b/MdePkg/Include/IndustryStandard/Usb.h index d3328a5461..56f94d8fc2 100644 --- a/MdePkg/Include/IndustryStandard/Usb.h +++ b/MdePkg/Include/IndustryStandard/Usb.h @@ -76,8 +76,8 @@ // USB transation direction
//
typedef enum {
- EfiUsbDataOut,
EfiUsbDataIn,
+ EfiUsbDataOut,
EfiUsbNoData
} EFI_USB_DATA_DIRECTION;
|