drm/panfrost: Don't scream about deferred probe
Probe deferral is far from "fatal". Signed-off-by: Robin Murphy <robin.murphy@arm.com> Signed-off-by: Rob Herring <robh@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/b6ff1f18ac0612f29fd2e3336d6663b7e02db572.1556195258.git.robin.murphy@arm.com
This commit is contained in:
parent
f4a3c6a44b
commit
5450f3615c
@ -395,13 +395,15 @@ static int panfrost_probe(struct platform_device *pdev)
|
||||
|
||||
err = panfrost_device_init(pfdev);
|
||||
if (err) {
|
||||
dev_err(&pdev->dev, "Fatal error during GPU init\n");
|
||||
if (err != -EPROBE_DEFER)
|
||||
dev_err(&pdev->dev, "Fatal error during GPU init\n");
|
||||
goto err_out0;
|
||||
}
|
||||
|
||||
err = panfrost_devfreq_init(pfdev);
|
||||
if (err) {
|
||||
dev_err(&pdev->dev, "Fatal error during devfreq init\n");
|
||||
if (err != -EPROBE_DEFER)
|
||||
dev_err(&pdev->dev, "Fatal error during devfreq init\n");
|
||||
goto err_out1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user