diff options
author | tangbin <tangbin@cmss.chinamobile.com> | 2020-02-27 23:07:01 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-02-28 17:28:31 +0000 |
commit | a57ec83a7104eab6f08215702067fbcbef90c0a0 (patch) | |
tree | 6557497c7f1bf93127ce696ef3c46adafc85365f /sound/soc/zte | |
parent | ac5bf39e39683c6f06c2e5b4baf27c7208f0c86d (diff) | |
download | linux-a57ec83a7104eab6f08215702067fbcbef90c0a0.tar.bz2 |
ASoC: zte: zx-spdif: remove redundant dev_err message
devm_ioremap_resource has already contains error message, so remove
the redundant dev_err message
Signed-off-by: tangbin <tangbin@cmss.chinamobile.com>
Link: https://lore.kernel.org/r/20200227150701.15652-1-tangbin@cmss.chinamobile.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/zte')
-rw-r--r-- | sound/soc/zte/zx-spdif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/zte/zx-spdif.c b/sound/soc/zte/zx-spdif.c index 60382ec23832..a3a07c0730e6 100644 --- a/sound/soc/zte/zx-spdif.c +++ b/sound/soc/zte/zx-spdif.c @@ -322,7 +322,6 @@ static int zx_spdif_probe(struct platform_device *pdev) zx_spdif->mapbase = res->start; zx_spdif->reg_base = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(zx_spdif->reg_base)) { - dev_err(&pdev->dev, "ioremap failed!\n"); return PTR_ERR(zx_spdif->reg_base); } |