Commit b4075895 authored by Yang Yingliang's avatar Yang Yingliang Committed by Mark Brown

ASoC: bcm2835-i2s: Switch to use dev_err_probe() helper

dev_err/dev_dbg() can be replace with dev_err_probe() which will check if error
code is -EPROBE_DEFER.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220914133355.3779364-1-yangyingliang@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent bfb735a3
...@@ -841,14 +841,9 @@ static int bcm2835_i2s_probe(struct platform_device *pdev) ...@@ -841,14 +841,9 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
/* get the clock */ /* get the clock */
dev->clk_prepared = false; dev->clk_prepared = false;
dev->clk = devm_clk_get(&pdev->dev, NULL); dev->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(dev->clk)) { if (IS_ERR(dev->clk))
ret = PTR_ERR(dev->clk); return dev_err_probe(&pdev->dev, PTR_ERR(dev->clk),
if (ret == -EPROBE_DEFER) "could not get clk\n");
dev_dbg(&pdev->dev, "could not get clk: %d\n", ret);
else
dev_err(&pdev->dev, "could not get clk: %d\n", ret);
return ret;
}
/* Request ioarea */ /* Request ioarea */
base = devm_platform_ioremap_resource(pdev, 0); base = devm_platform_ioremap_resource(pdev, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment