diff options
| author | Robert-Andrei Mercea <robertandreimercea@gmail.com> | 2026-07-20 14:51:26 +0300 |
|---|---|---|
| committer | Neil Armstrong <neil.armstrong@linaro.org> | 2026-07-22 13:43:22 +0200 |
| commit | ab3d527aaa334f843d1a5f71aa79678a34ff4e48 (patch) | |
| tree | 7b06980d4c1a4ccb6ea62d8561c5d4db020d9600 | |
| parent | 9499d3bc41a2c4e6a1badfb55f943b9d0c34f034 (diff) | |
drm/panel: osd101t2587: migrate to newer mipi_dsi* functions
Migrate osd101t2587-53ts panel driver from deprecated mipi_dsi*
functions to their *_multi variants for improved error handling, as
specified in the GPU subsystem TODO list.
Link: https://docs.kernel.org/gpu/todo.html#transition-away-from-using-deprecated-mipi-dsi-functions
Signed-off-by: Robert-Andrei Mercea <robertandreimercea@gmail.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260720115126.666363-1-robertandreimercea@gmail.com
| -rw-r--r-- | drivers/gpu/drm/panel/panel-osd-osd101t2587-53ts.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/gpu/drm/panel/panel-osd-osd101t2587-53ts.c b/drivers/gpu/drm/panel/panel-osd-osd101t2587-53ts.c index 2334b77f348c..63ae9dc5712f 100644 --- a/drivers/gpu/drm/panel/panel-osd-osd101t2587-53ts.c +++ b/drivers/gpu/drm/panel/panel-osd-osd101t2587-53ts.c @@ -32,11 +32,11 @@ static inline struct osd101t2587_panel *ti_osd_panel(struct drm_panel *panel) static int osd101t2587_panel_disable(struct drm_panel *panel) { struct osd101t2587_panel *osd101t2587 = ti_osd_panel(panel); - int ret; + struct mipi_dsi_multi_context ctx = { .dsi = osd101t2587->dsi }; - ret = mipi_dsi_shutdown_peripheral(osd101t2587->dsi); + mipi_dsi_shutdown_peripheral_multi(&ctx); - return ret; + return ctx.accum_err; } static int osd101t2587_panel_unprepare(struct drm_panel *panel) @@ -58,13 +58,11 @@ static int osd101t2587_panel_prepare(struct drm_panel *panel) static int osd101t2587_panel_enable(struct drm_panel *panel) { struct osd101t2587_panel *osd101t2587 = ti_osd_panel(panel); - int ret; + struct mipi_dsi_multi_context ctx = { .dsi = osd101t2587->dsi }; - ret = mipi_dsi_turn_on_peripheral(osd101t2587->dsi); - if (ret) - return ret; + mipi_dsi_turn_on_peripheral_multi(&ctx); - return ret; + return ctx.accum_err; } static const struct drm_display_mode default_mode_osd101t2587 = { |
