Fix a bug that usb keybarod can not work well when it is inserted at a usb 2.0 hub.
It's due to AsyncInterruptList does not update the corresponding QTDHw->Data with pci bus master address. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10286 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -117,8 +117,8 @@ struct _USB_HC_DEV {
|
||||
//
|
||||
// Schedule data structures
|
||||
//
|
||||
UINT32 *FrameBase;
|
||||
UINT32 *FrameBasePciMemAddr;
|
||||
UINT32 *FrameBase; // the buffer pointed by this pointer is used to store pci bus address of the QH descriptor.
|
||||
UINT32 *FrameBaseHostAddr; // the buffer pointed by this pointer is used to store host memory address of the QH descriptor.
|
||||
UHCI_QH_SW *SyncIntQh;
|
||||
UHCI_QH_SW *CtrlQh;
|
||||
UHCI_QH_SW *BulkQh;
|
||||
|
Reference in New Issue
Block a user