summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFancy Fang <chen.fang@nxp.com>2016-06-13 14:16:19 +0800
committerFancy Fang <chen.fang@nxp.com>2016-06-14 10:10:40 +0800
commitc88b7359ac59a8cd6ac0522d6bf388622a45c8f6 (patch)
tree2a916eba957ef7cf8b100851558ff9eac09b2048
parentf154b5e7ebdf8e3a362fcde72de6d8c0c717382d (diff)
MLK-12901-2 video: mipi_dsi_samsung: add 10msec delay after all the pkt write operation.
Add 10msec delay after all the pkt write operations to let the data to take effect on the panel's side. Signed-off-by: Fancy Fang <chen.fang@nxp.com> (cherry picked from commit f53d88d5996f3384533b50d21503b6e5e3e06b06)
-rw-r--r--drivers/video/fbdev/mxc/mipi_dsi_samsung.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/mxc/mipi_dsi_samsung.c b/drivers/video/fbdev/mxc/mipi_dsi_samsung.c
index 38d1a4468071..95ad7f43db5a 100644
--- a/drivers/video/fbdev/mxc/mipi_dsi_samsung.c
+++ b/drivers/video/fbdev/mxc/mipi_dsi_samsung.c
@@ -220,6 +220,7 @@ static int mipi_dsi_pkt_write(struct mipi_dsi_info *mipi_dsi,
return -ETIMEDOUT;
}
}
+ mdelay(10);
return 0;
}