Commit 739ebf51 authored by Sean Paul's avatar Sean Paul

drm/panel: panasonic-vvx10f034n00: Fix wuxga_nt_panel_disable() return value

Return value for mipi_dsi_shutdown_peripheral() is unchecked.
Check it and return any errors if they come up. Even if
mipi_dsi_shutdown_peripheral() fails, continue attempting to
disable.

Cc: Philippe Cornu <philippe.cornu@st.com>
Reviewed-by: default avatarPhilippe Cornu <philippe.cornu@st.com>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180116222217.240939-1-seanpaul@chromium.org
parent 6ac69290
...@@ -72,11 +72,12 @@ static int wuxga_nt_panel_on(struct wuxga_nt_panel *wuxga_nt) ...@@ -72,11 +72,12 @@ static int wuxga_nt_panel_on(struct wuxga_nt_panel *wuxga_nt)
static int wuxga_nt_panel_disable(struct drm_panel *panel) static int wuxga_nt_panel_disable(struct drm_panel *panel)
{ {
struct wuxga_nt_panel *wuxga_nt = to_wuxga_nt_panel(panel); struct wuxga_nt_panel *wuxga_nt = to_wuxga_nt_panel(panel);
int ret;
if (!wuxga_nt->enabled) if (!wuxga_nt->enabled)
return 0; return 0;
mipi_dsi_shutdown_peripheral(wuxga_nt->dsi); ret = mipi_dsi_shutdown_peripheral(wuxga_nt->dsi);
if (wuxga_nt->backlight) { if (wuxga_nt->backlight) {
wuxga_nt->backlight->props.power = FB_BLANK_POWERDOWN; wuxga_nt->backlight->props.power = FB_BLANK_POWERDOWN;
...@@ -86,7 +87,7 @@ static int wuxga_nt_panel_disable(struct drm_panel *panel) ...@@ -86,7 +87,7 @@ static int wuxga_nt_panel_disable(struct drm_panel *panel)
wuxga_nt->enabled = false; wuxga_nt->enabled = false;
return 0; return ret;
} }
static int wuxga_nt_panel_unprepare(struct drm_panel *panel) static int wuxga_nt_panel_unprepare(struct drm_panel *panel)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment