diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/omap2/dss/dsi.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index d0881e948bcf..18fe332d06e1 100644 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c | |||
@@ -2279,16 +2279,8 @@ EXPORT_SYMBOL(dsi_vc_dcs_read_2); | |||
2279 | 2279 | ||
2280 | int dsi_vc_set_max_rx_packet_size(int channel, u16 len) | 2280 | int dsi_vc_set_max_rx_packet_size(int channel, u16 len) |
2281 | { | 2281 | { |
2282 | int r; | 2282 | return dsi_vc_send_short(channel, DSI_DT_SET_MAX_RET_PKG_SIZE, |
2283 | r = dsi_vc_send_short(channel, DSI_DT_SET_MAX_RET_PKG_SIZE, | ||
2284 | len, 0); | 2283 | len, 0); |
2285 | |||
2286 | if (r) | ||
2287 | return r; | ||
2288 | |||
2289 | r = dsi_vc_send_bta_sync(channel); | ||
2290 | |||
2291 | return r; | ||
2292 | } | 2284 | } |
2293 | EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size); | 2285 | EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size); |
2294 | 2286 | ||