From: Geert Uytterhoeven Date: Wed, 12 Feb 2020 08:50:08 +0000 (+0100) Subject: ASoC: sh: fsi: Restore devm_ioremap() alignment X-Git-Tag: v5.15~2585^2~226^2~206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82dabf599b221a712e951b9061c56669565552a9;p=platform%2Fkernel%2Flinux-starfive.git ASoC: sh: fsi: Restore devm_ioremap() alignment The alignment of the continuation of the devm_ioremap() call in fsi_probe() was broken. Join the lines, as all parameters can fit on a single line. Fixes: 4bdc0d676a643140 ("remove ioremap_nocache and devm_ioremap_nocache") Signed-off-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20200212085008.9652-1-geert+renesas@glider.be Signed-off-by: Mark Brown --- diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index 4b35ef4..5ef4221 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -1938,8 +1938,7 @@ static int fsi_probe(struct platform_device *pdev) if (!master) return -ENOMEM; - master->base = devm_ioremap(&pdev->dev, - res->start, resource_size(res)); + master->base = devm_ioremap(&pdev->dev, res->start, resource_size(res)); if (!master->base) { dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n"); return -ENXIO;