1
0
Fork 0

gpu: host1x: Do not output error message for deferred probe

When deferring probe, avoid logging a confusing error message. While at
it, make the error message more informational.

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Thierry Reding <treding@nvidia.com>
alistair/sunxi64-5.4-dsi
Thierry Reding 2019-06-04 17:31:50 +02:00
parent a188339ca5
commit 4bb923e807
1 changed files with 4 additions and 1 deletions

View File

@ -258,8 +258,11 @@ static int host1x_probe(struct platform_device *pdev)
host->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(host->clk)) {
dev_err(&pdev->dev, "failed to get clock\n");
err = PTR_ERR(host->clk);
if (err != -EPROBE_DEFER)
dev_err(&pdev->dev, "failed to get clock: %d\n", err);
return err;
}