[U-Boot] [PATCH 3/3] usb: ehci: Fix register access

Simon Glass sjg at chromium.org
Fri Dec 27 00:09:24 CET 2013


On 13 December 2013 21:55, Marek Vasut <marex at denx.de> wrote:
>
> 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 at denx.de>
> Cc: Simon Glass <sjg at chromium.org>

Acked-by: Simon Glass <sjg at chromium.org>

> ---
>  drivers/usb/host/ehci-hcd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
> index 3ef204d..17187ca 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;
>
> --
> 1.8.4.3
>


More information about the U-Boot mailing list