Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -436,6 +436,7 @@ 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);
		if (ret != -EPROBE_DEFER)
			dev_err(dev, "failed to request regulator: %d\n", ret);
		return ret;
	}