mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 10:26:09 +00:00
ASoC: bcm2835: Silence clk_get() error on -EPROBE_DEFER
Silence clk_get() error with dev_dbg() on -EPROBE_DEFER. Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Link: https://lore.kernel.org/r/1595564371-13692-1-git-send-email-sw0312.kim@samsung.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
483e20a01a
commit
92a007944e
@ -841,9 +841,12 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
|
|||||||
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)) {
|
||||||
dev_err(&pdev->dev, "could not get clk: %ld\n",
|
ret = PTR_ERR(dev->clk);
|
||||||
PTR_ERR(dev->clk));
|
if (ret == -EPROBE_DEFER)
|
||||||
return PTR_ERR(dev->clk);
|
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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user