On 03/04/2014 11:23 AM, Alexander Shiyan wrote: >>> - l3->l3_base[2] = ioremap(res->start, resource_size(res)); >>> - if (!l3->l3_base[2]) { >>> - dev_err(&pdev->dev, "ioremap failed\n"); >>> - ret = -ENOMEM; >>> - goto err2; >>> + l3->l3_base[i] = devm_request_and_ioremap(&pdev->dev, res); >>> + if (!l3->l3_base[i]) { >> >> if (IS_ERR(l3->l3_base[i])) > > Ahh, I messed up this with devm_ioremap_resource(). > However, if there is reason to use devm_request_and_ioremap() here? devm_request_and_ioremap() is just a wrapper for devm_ioremap_resource(). It returns NULL in case of error (eats up the error code at the same time). I don't have strong preference on this so I can change it to devm_ioremap_resource() -- Péter -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html