summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-faraday.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-25 12:22:18 -0600
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:23 -0600
commit7338287d580fba4f09d052960941c23039e8919d (patch)
treea4277e3a6ab07239ae3e92bad401647ce08dc47a /drivers/usb/host/ehci-faraday.c
parentaac064f76bf53dfb21bc5d96bdc3a884d3eb2620 (diff)
downloadtalos-obmc-uboot-7338287d580fba4f09d052960941c23039e8919d.tar.gz
talos-obmc-uboot-7338287d580fba4f09d052960941c23039e8919d.zip
dm: usb: Pass EHCI controller pointer to ehci_get_port_speed()
Adjust this function so that it is passed an EHCI controller pointer so that implementations can look up their controller. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb/host/ehci-faraday.c')
-rw-r--r--drivers/usb/host/ehci-faraday.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-faraday.c b/drivers/usb/host/ehci-faraday.c
index 3b761bc326..e38681342c 100644
--- a/drivers/usb/host/ehci-faraday.c
+++ b/drivers/usb/host/ehci-faraday.c
@@ -101,11 +101,12 @@ void ehci_set_usbmode(int index)
* This ehci_get_port_speed() overrides the weak function
* in "ehci-hcd.c".
*/
-int ehci_get_port_speed(struct ehci_hcor *hcor, uint32_t reg)
+int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
{
int spd, ret = PORTSC_PSPD_HS;
- union ehci_faraday_regs *regs = (void __iomem *)((ulong)hcor - 0x10);
+ union ehci_faraday_regs *regs;
+ ret = (void __iomem *)((ulong)ctrl->hcor - 0x10);
if (ehci_is_fotg2xx(regs))
spd = OTGCSR_SPD(readl(&regs->otg.otgcsr));
else
OpenPOWER on IntegriCloud