mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
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>
This commit is contained in:
parent
a188339ca5
commit
4bb923e807
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user