aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorAnand Gadiyar <gadiyar@ti.com>2010-02-12 07:24:59 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-03-02 17:55:04 -0500
commitbdb581bd6bd59a3303974977544d679d849214d1 (patch)
tree7b84e8409540844a2fe1a0f78f99288990e9e01c /drivers/usb/host
parentb87c6e86dac1bb5222279cc8ff7e09529e1c4ed9 (diff)
USB: omap: ehci: kill 2 compile warnings
Kill these compile warnings: CC [M] drivers/usb/host/ehci-hcd.o drivers/usb/host/ehci-dbg.c:45: warning: 'dbg_hcs_params' defined but not used drivers/usb/host/ehci-dbg.c:89: warning: 'dbg_hcc_params' defined but not used Signed-off-by: Anand Gadiyar <gadiyar@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/ehci-omap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c
index 17e4ceb5014d..24d3d526b5d9 100644
--- a/drivers/usb/host/ehci-omap.c
+++ b/drivers/usb/host/ehci-omap.c
@@ -645,6 +645,9 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
645 omap->ehci->regs = hcd->regs 645 omap->ehci->regs = hcd->regs
646 + HC_LENGTH(readl(&omap->ehci->caps->hc_capbase)); 646 + HC_LENGTH(readl(&omap->ehci->caps->hc_capbase));
647 647
648 dbg_hcs_params(omap->ehci, "reset");
649 dbg_hcc_params(omap->ehci, "reset");
650
648 /* cache this readonly data; minimize chip reads */ 651 /* cache this readonly data; minimize chip reads */
649 omap->ehci->hcs_params = readl(&omap->ehci->caps->hcs_params); 652 omap->ehci->hcs_params = readl(&omap->ehci->caps->hcs_params);
650 653