aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-mxc
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r--arch/arm/plat-mxc/ehci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/ehci.c b/arch/arm/plat-mxc/ehci.c
index c1a7146dad96..d59f5feb3c54 100644
--- a/arch/arm/plat-mxc/ehci.c
+++ b/arch/arm/plat-mxc/ehci.c
@@ -254,6 +254,10 @@ int mxc_initialize_usb_hw(int port, unsigned int flags)
254 int ret = 0; 254 int ret = 0;
255 255
256 usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K); 256 usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K);
257 if (!usb_base) {
258 printk(KERN_ERR "%s(): ioremap failed\n", __func__);
259 return -ENOMEM;
260 }
257 261
258 switch (port) { 262 switch (port) {
259 case 0: /* OTG port */ 263 case 0: /* OTG port */