mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
sh/intc: Restore devm_ioremap() alignment
Restore alignment of the continuation of the devm_ioremap() call in
register_intc_controller().
Fixes: 4bdc0d676a
("remove ioremap_nocache and devm_ioremap_nocache")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rich Felker <dalias@libc.org>
This commit is contained in:
committed by
Rich Felker
parent
a118584e7e
commit
b89bc060b5
@@ -214,7 +214,7 @@ int __init register_intc_controller(struct intc_desc *desc)
|
|||||||
d->window[k].phys = res->start;
|
d->window[k].phys = res->start;
|
||||||
d->window[k].size = resource_size(res);
|
d->window[k].size = resource_size(res);
|
||||||
d->window[k].virt = ioremap(res->start,
|
d->window[k].virt = ioremap(res->start,
|
||||||
resource_size(res));
|
resource_size(res));
|
||||||
if (!d->window[k].virt)
|
if (!d->window[k].virt)
|
||||||
goto err2;
|
goto err2;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user