summaryrefslogtreecommitdiff
path: root/drivers/usb/host/ehci-faraday.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-25 12:22:24 -0600
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:24 -0600
commit6a1a8162c62fcb5435495c1ddf3390a1d1967474 (patch)
treecdb92b0943b31f8ef016c0823a5146624a96af24 /drivers/usb/host/ehci-faraday.c
parent11d18a1946bd290b83d584ab521e6940e1a11d69 (diff)
dm: usb: Pass EHCI controller pointer to ehci_get_portsc_register()
Adjust this function so that it is passed an EHCI controller pointer so that implementations can look up their controller. This makes the weak functions use a consistent API. 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-faraday.c b/drivers/usb/host/ehci-faraday.c
index c64672bf45..b865fea3eb 100644
--- a/drivers/usb/host/ehci-faraday.c
+++ b/drivers/usb/host/ehci-faraday.c
@@ -134,7 +134,7 @@ int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
* This ehci_get_portsc_register() overrides the weak function
* in "ehci-hcd.c".
*/
-uint32_t *ehci_get_portsc_register(struct ehci_hcor *hcor, int port)
+uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port)
{
/* Faraday EHCI has one and only one portsc register */
if (port) {
@@ -144,5 +144,5 @@ uint32_t *ehci_get_portsc_register(struct ehci_hcor *hcor, int port)
}
/* Faraday EHCI PORTSC register offset is 0x20 from hcor */
- return (uint32_t *)((uint8_t *)hcor + 0x20);
+ return (uint32_t *)((uint8_t *)ctrl->hcor + 0x20);
}