ASoC: imx-sgtl5000: lower log level for potential probe deferral cases

Not finding the codec/SSI instance can be due to probe deferral.
Do not print error messages in those cases.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Stefan Agner 2019-01-18 10:06:53 +01:00 committed by Mark Brown
parent d986657248
commit 691beb02d9
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 2 additions and 2 deletions

View File

@ -104,13 +104,13 @@ static int imx_sgtl5000_probe(struct platform_device *pdev)
ssi_pdev = of_find_device_by_node(ssi_np); ssi_pdev = of_find_device_by_node(ssi_np);
if (!ssi_pdev) { if (!ssi_pdev) {
dev_err(&pdev->dev, "failed to find SSI platform device\n"); dev_dbg(&pdev->dev, "failed to find SSI platform device\n");
ret = -EPROBE_DEFER; ret = -EPROBE_DEFER;
goto fail; goto fail;
} }
codec_dev = of_find_i2c_device_by_node(codec_np); codec_dev = of_find_i2c_device_by_node(codec_np);
if (!codec_dev) { if (!codec_dev) {
dev_err(&pdev->dev, "failed to find codec platform device\n"); dev_dbg(&pdev->dev, "failed to find codec platform device\n");
ret = -EPROBE_DEFER; ret = -EPROBE_DEFER;
goto fail; goto fail;
} }