]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare()
authorDouglas Anderson <dianders@chromium.org>
Fri, 17 May 2024 21:36:38 +0000 (14:36 -0700)
committerNeil Armstrong <neil.armstrong@linaro.org>
Tue, 21 May 2024 08:01:20 +0000 (10:01 +0200)
The mipi_dsi_dcs_nop() function returns an error but we weren't
checking it in boe_panel_prepare(). Add a check. This is highly
unlikely to matter in practice. If the NOP failed then likely later
MIPI commands would fail too.

Found by code inspection.

Fixes: 812562b8d881 ("drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence")
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20240517143643.3.Ibffbaa5b4999ac0e55f43bf353144433b099d727@changeid
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240517143643.3.Ibffbaa5b4999ac0e55f43bf353144433b099d727@changeid
drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c

index 028625d2d37d945e24f7b5ecd4006ee66e123852..f7beace455c3e658bc541fa88da834e09ecbd138 100644 (file)
@@ -1456,7 +1456,11 @@ static int boe_panel_prepare(struct drm_panel *panel)
        usleep_range(10000, 11000);
 
        if (boe->desc->lp11_before_reset) {
-               mipi_dsi_dcs_nop(boe->dsi);
+               ret = mipi_dsi_dcs_nop(boe->dsi);
+               if (ret < 0) {
+                       dev_err(&boe->dsi->dev, "Failed to send NOP: %d\n", ret);
+                       goto poweroff;
+               }
                usleep_range(1000, 2000);
        }
        gpiod_set_value(boe->enable_gpio, 1);