[PATCH] ehci-hcd.c: handle EHCI_HAS_TT in ehci_reset() during startup
Antony Pavlov
antonynpavlov at gmail.com
Mon Sep 12 06:26:00 EDT 2011
Signed-off-by: Antony Pavlov <antonynpavlov at gmail.com>
---
drivers/usb/host/ehci-hcd.c | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index 60fc181..883dc07 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -921,15 +921,10 @@ static int ehci_probe(struct device_d *dev)
host->submit_control_msg = submit_control_msg;
host->submit_bulk_msg = submit_bulk_msg;
- if (ehci->flags & EHCI_HAS_TT) {
- /* Set to host mode */
- reg = ehci_readl(ehci->hcor + USBMODE);
- reg |= USBMODE_CM_HC;
- writel(reg, ehci->hcor + USBMODE);
- }
-
usb_register_host(host);
+ ehci_reset(ehci);
+
reg = HC_VERSION(ehci_readl(&ehci->hccr->cr_capbase));
dev_info(dev, "USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
--
1.7.5.4
More information about the barebox
mailing list