Commit cb7ff314 authored by Jon Hunter's avatar Jon Hunter Committed by Thierry Reding

drm/tegra: sor: Don't warn on probe deferral

Deferred probe is an expected return value for tegra_output_probe().
Given that the driver deals with it properly, there's no need to output
a warning that may potentially confuse users.
Signed-off-by: default avatarJon Hunter <jonathanh@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 3650b228
...@@ -3764,10 +3764,9 @@ static int tegra_sor_probe(struct platform_device *pdev) ...@@ -3764,10 +3764,9 @@ static int tegra_sor_probe(struct platform_device *pdev)
return err; return err;
err = tegra_output_probe(&sor->output); err = tegra_output_probe(&sor->output);
if (err < 0) { if (err < 0)
dev_err(&pdev->dev, "failed to probe output: %d\n", err); return dev_err_probe(&pdev->dev, err,
return err; "failed to probe output\n");
}
if (sor->ops && sor->ops->probe) { if (sor->ops && sor->ops->probe) {
err = sor->ops->probe(sor); err = sor->ops->probe(sor);
......
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