diff options
author | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-09-14 05:26:09 +0000 |
---|---|---|
committer | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-09-14 05:26:09 +0000 |
commit | 3af875e2209cc43c8d14a75061eebde7bd91b198 (patch) | |
tree | f251e2b2bc50850fdfcdddbc2295e5e1e12a246a /MdeModulePkg/Bus/Usb | |
parent | ef12a160dea622228b1e489ef28e8812a07b1f84 (diff) | |
download | edk2-3af875e2209cc43c8d14a75061eebde7bd91b198.zip edk2-3af875e2209cc43c8d14a75061eebde7bd91b198.tar.gz edk2-3af875e2209cc43c8d14a75061eebde7bd91b198.tar.bz2 |
In various archs, Processor memory address may not be same with Pci memory address. For usb host controller, we should use pci memory address to initialize framelist register and all address field in QH/TD.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9259 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Usb')
-rw-r--r-- | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c index eba9017..c64de3a 100644 --- a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c +++ b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c @@ -852,8 +852,8 @@ UsbEnumeratePort ( return EFI_SUCCESS;
}
- DEBUG (( EFI_D_INFO, "UsbEnumeratePort: port %d state - %x, change - %x\n",
- Port, PortState.PortStatus, PortState.PortChangeStatus));
+ DEBUG (( EFI_D_INFO, "UsbEnumeratePort: port %d state - %x, change - %x on %p\n",
+ Port, PortState.PortStatus, PortState.PortChangeStatus, HubIf));
//
// This driver only process two kinds of events now: over current and
|