diff options
author | Ye Li <ye.li@nxp.com> | 2016-03-04 10:10:44 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-04 16:00:08 +0800 |
commit | 8ada91778f7f28dd33b80f515a35d09c1398933c (patch) | |
tree | f7d85460ce985931be44470aaed7d23a38762045 /drivers/usb | |
parent | c54bd59f57d73309e0e2aab59ec1049cd4bec01a (diff) | |
download | u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.zip u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.tar.gz u-boot-imx-8ada91778f7f28dd33b80f515a35d09c1398933c.tar.bz2 |
MLK-12492-1 mx6: fix type style problems introduced by patch MLK-12483
Some type style problems found by review-commits for previous patch
MLK-12483, fix them in this patch and re-check.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/ehci-mx6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c index 3ec16ec..7fa8b22 100644 --- a/drivers/usb/host/ehci-mx6.c +++ b/drivers/usb/host/ehci-mx6.c @@ -237,11 +237,11 @@ int ehci_hcd_init(int index, enum usb_init_type init, return -EINVAL; if (mx6_usb_fused(USB_BASE_ADDR + (0x200 * index))) { - printf("USB@0x%x is fused, disable it\n", + printf("USB@0x%x is fused, disable it\n", USB_BASE_ADDR + (0x200 * index)); return -2; } - + enable_usboh3_clk(1); mdelay(1); |