diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 09:50:08 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-02-12 18:42:47 +0000 |
commit | 82dabf599b221a712e951b9061c56669565552a9 (patch) | |
tree | de0fc29f46ab579d05bf451dd22f69a93c0826f3 /sound/soc/sh | |
parent | 7b94ace7ec5e81f3bb79c48d306e79eae4fce4a4 (diff) | |
download | linux-82dabf599b221a712e951b9061c56669565552a9.tar.bz2 |
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 <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20200212085008.9652-1-geert+renesas@glider.be
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh')
-rw-r--r-- | sound/soc/sh/fsi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index 4b35ef402604..5ef4221be6c3 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; |