drm/bridge: sii9234: silence warning about regulators during deferred probe

Don't confuse user with meaningless warning about failure in getting
regulators in case of deferred probe.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200226101307.16708-1-m.szyprowski@samsung.com
This commit is contained in:
Marek Szyprowski 2020-02-26 11:13:07 +01:00 committed by Andrzej Hajda
parent 9e1ed9fb1e
commit 5ea5647f49
1 changed files with 2 additions and 1 deletions

View File

@ -836,7 +836,8 @@ static int sii9234_init_resources(struct sii9234 *ctx,
ctx->supplies[3].supply = "cvcc12"; ctx->supplies[3].supply = "cvcc12";
ret = devm_regulator_bulk_get(ctx->dev, 4, ctx->supplies); ret = devm_regulator_bulk_get(ctx->dev, 4, ctx->supplies);
if (ret) { if (ret) {
dev_err(ctx->dev, "regulator_bulk failed\n"); if (ret != -EPROBE_DEFER)
dev_err(ctx->dev, "regulator_bulk failed\n");
return ret; return ret;
} }