We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aae8ed commit e63adecCopy full SHA for e63adec
drivers/gpu/drm/panfrost/panfrost_device.c
@@ -101,7 +101,9 @@ static int panfrost_regulator_init(struct panfrost_device *pfdev)
101
pfdev->comp->num_supplies,
102
pfdev->regulators);
103
if (ret < 0) {
104
- dev_err(pfdev->dev, "failed to get regulators: %d\n", ret);
+ if (ret != -EPROBE_DEFER)
105
+ dev_err(pfdev->dev, "failed to get regulators: %d\n",
106
+ ret);
107
return ret;
108
}
109
@@ -213,10 +215,8 @@ int panfrost_device_init(struct panfrost_device *pfdev)
213
215
214
216
217
err = panfrost_regulator_init(pfdev);
- if (err) {
- dev_err(pfdev->dev, "regulator init failed %d\n", err);
218
+ if (err)
219
goto err_out0;
- }
220
221
err = panfrost_reset_init(pfdev);
222
if (err) {
0 commit comments