On Tue, Mar 05, 2013 at 05:14:45PM +0530, Vishwanathrao Badarkhe, Manish wrote:
> Update the code to use devm_* API so that driver
> core will manage resources.
> 
> Signed-off-by: Vishwanathrao Badarkhe, Manish <manish...@ti.com>

Applied the following fix:

> +     dev->base = devm_ioremap_resource(&pdev->dev, mem);
> +     if (IS_ERR(dev->base)) {
> +             r = PTR_ERR(dev->base);
> +             dev_err(&pdev->dev, "I2C region already claimed\n");
> +             goto err_unuse_clocks;

No dev_err after devm_ioremap_resource. make coccicheck will tell you
about this.

Otherwise: Applied to for-next, thanks!

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to