On Mon, Jul 25, 2011 at 09:15:23AM +0200, Lothar Waßmann wrote: > > + if (WARN_ON(ppriv->internal_phy_clk_already_on < 0)) > > + printk(KERN_ERR "please check phy clock ON/OFF sequence\n"); > > +} And there should be a blank line here. > > +static int fsl_usb_host_init(struct platform_device *pdev) > > +{ > > + struct mxc_usbh_platform_data *pdata = pdev->dev.platform_data; > > + struct mxs_usb_private_date *ppriv = pdata->ppriv; > > + > > + ppriv->phy_regs = ioremap(MX28_USBPHY1_BASE_ADDR, SZ_8K); > > + if (ppriv->phy_regs == NULL) > > + return -ENOMEM; > > + > > + ppriv->ctrl_regs = ioremap(MX28_USBCTRL1_BASE_ADDR, SZ_8K); > > + if (ppriv->ctrl_regs == NULL) > > + return -ENOMEM; > > + > What about proper cleanup in the error case? Doing something like this is probably easiest: ppriv->phy_regs = ioremap(MX28_USBPHY1_BASE_ADDR, SZ_8K); ppriv->ctrl_regs = ioremap(MX28_USBCTRL1_BASE_ADDR, SZ_8K); if (!ppriv->phy_regs || !ppriv_ctrl_regs) { iounmap(ppriv->phy_regs); iounmap(ppriv->ctrl_regs); return -ENOMEM; } As iounmap ignores NULL pointers. -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html