Skip to content

Commit b89bc06

Browse files
geertuRich Felker
authored andcommitted
sh/intc: Restore devm_ioremap() alignment
Restore alignment of the continuation of the devm_ioremap() call in register_intc_controller(). Fixes: 4bdc0d6 ("remove ioremap_nocache and devm_ioremap_nocache") Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Rich Felker <[email protected]>
1 parent a118584 commit b89bc06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/sh/intc/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ int __init register_intc_controller(struct intc_desc *desc)
214214
d->window[k].phys = res->start;
215215
d->window[k].size = resource_size(res);
216216
d->window[k].virt = ioremap(res->start,
217-
resource_size(res));
217+
resource_size(res));
218218
if (!d->window[k].virt)
219219
goto err2;
220220
}

0 commit comments

Comments
 (0)