diff options
| author | tangbin <[email protected]> | 2020-02-27 23:07:01 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2020-02-28 17:28:31 +0000 |
| commit | a57ec83a7104eab6f08215702067fbcbef90c0a0 (patch) | |
| tree | 6557497c7f1bf93127ce696ef3c46adafc85365f | |
| parent | ac5bf39e39683c6f06c2e5b4baf27c7208f0c86d (diff) | |
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -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); } |