Skip to content

Commit bc714c8

Browse files
geertuMarc Zyngier
authored andcommitted
irqchip/renesas-intc-irqpin: Restore devm_ioremap() alignment
Restore alignment of the continuation of the devm_ioremap() call in intc_irqpin_probe(). Fixes: 4bdc0d6 ("remove ioremap_nocache and devm_ioremap_nocache") Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Marc Zyngier <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 66968d7 commit bc714c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/irqchip/irq-renesas-intc-irqpin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ static int intc_irqpin_probe(struct platform_device *pdev)
461461
}
462462

463463
i->iomem = devm_ioremap(dev, io[k]->start,
464-
resource_size(io[k]));
464+
resource_size(io[k]));
465465
if (!i->iomem) {
466466
dev_err(dev, "failed to remap IOMEM\n");
467467
ret = -ENXIO;

0 commit comments

Comments
 (0)