gpio-rcar: use devm_ioremap_resource()
Using devm_ioremap_resource() has several advantages over devm_ioremap(): - it checks the passed resource's validity; - it calls devm_request_mem_region() to check for the resource overlap; - it prints an error message in case of error. We can call devm_ioremap_resource() instead of devm_ioremap_nocache() as ioremap() and ioremap_nocache() are implemented identically on ARM. Doing this saves 2 LoCs and 80 bytes (AArch64 gcc 4.8.5). Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:

committed by
Linus Walleij

parent
80057cb417
commit
5a24d4b601
@@ -452,19 +452,17 @@ static int gpio_rcar_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
pm_runtime_enable(dev);
|
pm_runtime_enable(dev);
|
||||||
|
|
||||||
io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
||||||
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
||||||
|
if (!irq) {
|
||||||
if (!io || !irq) {
|
dev_err(dev, "missing IRQ\n");
|
||||||
dev_err(dev, "missing IRQ or IOMEM\n");
|
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto err0;
|
goto err0;
|
||||||
}
|
}
|
||||||
|
|
||||||
p->base = devm_ioremap_nocache(dev, io->start, resource_size(io));
|
io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
if (!p->base) {
|
p->base = devm_ioremap_resource(dev, io);
|
||||||
dev_err(dev, "failed to remap I/O memory\n");
|
if (IS_ERR(p->base)) {
|
||||||
ret = -ENXIO;
|
ret = PTR_ERR(p->base);
|
||||||
goto err0;
|
goto err0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user