summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2013-12-14 02:04:52 +0100
committerMarek Vasut <marex@denx.de>2013-12-18 19:53:19 +0100
commiteb63218b9b95a59baa8b241f3a88e4415dabf833 (patch)
tree169b7ce3505a8778cc6616d19e64ee4f3c9e71b4 /drivers/usb/host
parent1e1be6d478c7c2cddf97e2623dd5c4c10bc23020 (diff)
downloadtalos-obmc-uboot-eb63218b9b95a59baa8b241f3a88e4415dabf833.tar.gz
talos-obmc-uboot-eb63218b9b95a59baa8b241f3a88e4415dabf833.zip
usb: ehci: Fix register access
Fix the register access in EHCI HCD. We need to use address of the register as an ehci_writel() argument. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/ehci-hcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index 3ef204d6ab..17187caed4 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -948,7 +948,7 @@ int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
#endif
/* Set the high address word (aka segment) for 64-bit controller */
if (ehci_readl(&ehcic[index].hccr->cr_hccparams) & 1)
- ehci_writel(ehcic[index].hcor->or_ctrldssegment, 0);
+ ehci_writel(&ehcic[index].hcor->or_ctrldssegment, 0);
qh_list = &ehcic[index].qh_list;
OpenPOWER on IntegriCloud