drm/panel: sofef00: Make use of the helper function dev_err_probe()

When possible use dev_err_probe help to properly deal with the
PROBE_DEFER error, the benefit is that DEFER issue will be logged
in the devices_deferred debugfs file.
And using dev_err_probe() can reduce code size, the error value
gets printed.

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210916104635.11675-1-caihuoqing@baidu.com
This commit is contained in:
Cai Huoqing 2021-09-16 18:46:34 +08:00 committed by Sam Ravnborg
parent 94f9b9525c
commit d60b93917a
1 changed files with 6 additions and 10 deletions

View File

@ -270,18 +270,14 @@ static int sofef00_panel_probe(struct mipi_dsi_device *dsi)
} }
ctx->supply = devm_regulator_get(dev, "vddio"); ctx->supply = devm_regulator_get(dev, "vddio");
if (IS_ERR(ctx->supply)) { if (IS_ERR(ctx->supply))
ret = PTR_ERR(ctx->supply); return dev_err_probe(dev, PTR_ERR(ctx->supply),
dev_err(dev, "Failed to get vddio regulator: %d\n", ret); "Failed to get vddio regulator\n");
return ret;
}
ctx->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); ctx->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
if (IS_ERR(ctx->reset_gpio)) { if (IS_ERR(ctx->reset_gpio))
ret = PTR_ERR(ctx->reset_gpio); return dev_err_probe(dev, PTR_ERR(ctx->reset_gpio),
dev_warn(dev, "Failed to get reset-gpios: %d\n", ret); "Failed to get reset-gpios\n");
return ret;
}
ctx->dsi = dsi; ctx->dsi = dsi;
mipi_dsi_set_drvdata(dsi, ctx); mipi_dsi_set_drvdata(dsi, ctx);