aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayachandran C <jayachandranc@netlogicmicro.com>2011-11-18 12:12:41 +0530
committerGreg Kroah-Hartman <gregkh@suse.de>2011-11-18 11:16:36 -0800
commite253dec31b3ffc2bf19aa8c29865ab7254e90c29 (patch)
tree3a7c9bcea6ae75b814761f95ed6d527993e4fafd
parentbc985c10f388c0e5fb2cff95ff2220721627fbd8 (diff)
downloadisci-e253dec31b3ffc2bf19aa8c29865ab7254e90c29.tar.gz
usb: Netlogic: Fix HC_LENGTH call in ehci-xls.c
Fix compile error, HC_LENGTH now takes two parameters and ehci needs to be passed as the first parameter. Signed-off-by: Jayachandran C <jayachandranc@netlogicmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/usb/host/ehci-xls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-xls.c b/drivers/usb/host/ehci-xls.c
index fe74bd6760187c..b4fb511d24bcda 100644
--- a/drivers/usb/host/ehci-xls.c
+++ b/drivers/usb/host/ehci-xls.c
@@ -19,7 +19,7 @@ static int ehci_xls_setup(struct usb_hcd *hcd)
ehci->caps = hcd->regs;
ehci->regs = hcd->regs +
- HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase));
+ HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
dbg_hcs_params(ehci, "reset");
dbg_hcc_params(ehci, "reset");