Skip to content
Snippets Groups Projects
Commit f390d43e authored by Yannick Fertré's avatar Yannick Fertré Committed by Thierry Reding
Browse files

drm/panel: otm8009a: No error msg if probe deferred

parent 0084c3c7
No related branches found
No related tags found
No related merge requests found
......@@ -436,7 +436,8 @@ static int otm8009a_probe(struct mipi_dsi_device *dsi)
ctx->supply = devm_regulator_get(dev, "power");
if (IS_ERR(ctx->supply)) {
ret = PTR_ERR(ctx->supply);
dev_err(dev, "failed to request regulator: %d\n", ret);
if (ret != -EPROBE_DEFER)
dev_err(dev, "failed to request regulator: %d\n", ret);
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment