Commit 1a1c130c authored by Philippe Cornu's avatar Philippe Cornu Committed by Archit Taneja

drm/bridge/synopsys: dsi: Fix dsi_host_transfer() return value

The dw_mipi_dsi_host_transfer() must return the number of
bytes transmitted/received on success instead of 0.
Note: As the read feature is not implemented, only the
transmitted number of bytes is returned for the moment.
Reviewed-by: default avatarBrian Norris <briannorris@chromium.org>
Signed-off-by: default avatarPhilippe Cornu <philippe.cornu@st.com>
Signed-off-by: default avatarArchit Taneja <architt@codeaurora.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180125103800.1999-3-philippe.cornu@st.com
parent 4cda6e8e
...@@ -412,7 +412,16 @@ static ssize_t dw_mipi_dsi_host_transfer(struct mipi_dsi_host *host, ...@@ -412,7 +412,16 @@ static ssize_t dw_mipi_dsi_host_transfer(struct mipi_dsi_host *host,
dw_mipi_message_config(dsi, msg); dw_mipi_message_config(dsi, msg);
return dw_mipi_dsi_write(dsi, &packet); ret = dw_mipi_dsi_write(dsi, &packet);
if (ret)
return ret;
/*
* TODO Only transmitted size is returned as actual driver does
* not support dcs/generic reads. Please update return value when
* delivering the read feature.
*/
return packet.size;
} }
static const struct mipi_dsi_host_ops dw_mipi_dsi_host_ops = { static const struct mipi_dsi_host_ops dw_mipi_dsi_host_ops = {
......
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