diff options
author | Feng Tian <feng.tian@intel.com> | 2015-03-12 05:41:54 +0000 |
---|---|---|
committer | erictian <erictian@Edk2> | 2015-03-12 05:41:54 +0000 |
commit | c5fcd77f7330b1a9f7763dbd232ff5d4fdb8c9dd (patch) | |
tree | d99f22527a97b822369e777522362abafbe5b1ba /MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c | |
parent | 7cff4456a341de56005f483800474a2adb5fb9fd (diff) | |
download | edk2-c5fcd77f7330b1a9f7763dbd232ff5d4fdb8c9dd.tar.gz edk2-c5fcd77f7330b1a9f7763dbd232ff5d4fdb8c9dd.tar.bz2 edk2-c5fcd77f7330b1a9f7763dbd232ff5d4fdb8c9dd.zip |
MdeModulePkg/Usb: Remove unnecessary direction restriction on UsbHc2.SyncInterruptTransfer().
The restriction of UsbHc2.SyncInterruptTransfer() on interrupt transfer direction is removed. This interface could support Interrupt IN/OUT now.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17041 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c')
-rw-r--r-- | MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c b/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c index 3fcb0f9914..315f2cbbdb 100644 --- a/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c +++ b/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c @@ -11,7 +11,7 @@ and companion host controller when UHCI or OHCI gets attached earlier than EHCI and a
USB 2.0 device inserts.
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -1159,10 +1159,6 @@ EhcSyncInterruptTransfer ( return EFI_INVALID_PARAMETER;
}
- if (!EHCI_IS_DATAIN (EndPointAddress)) {
- return EFI_INVALID_PARAMETER;
- }
-
if ((*DataToggle != 1) && (*DataToggle != 0)) {
return EFI_INVALID_PARAMETER;
}
|