diff options
| author | Shivaraj Shetty <shivaraj@codeaurora.org> | 2014-04-10 19:31:43 +0530 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:28:53 -0700 |
| commit | 75cd8d5140e696a5b26bf2860442466c8439db39 (patch) | |
| tree | 6960099115da41e83cb40a901b08f38e08d4b7ac /drivers/video/fbdev | |
| parent | 79fbd868ef7c618a78de6985396bf752f15958d4 (diff) | |
mdss: Add newline to VSYNC timestamp for mdp3 driver
This makes sure that the userspace correctly interprets the end
of the vsync timestamp.
CRs-Fixed: 639039
Change-Id: I8a0810283a42a9c39a3c8fe36b862bbfd3ecdbea
Signed-off-by: Shivaraj Shetty <shivaraj@codeaurora.org>
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/msm/mdp3_ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdp3_ctrl.c b/drivers/video/fbdev/msm/mdp3_ctrl.c index f1e30d56905b..56bd748c4772 100644 --- a/drivers/video/fbdev/msm/mdp3_ctrl.c +++ b/drivers/video/fbdev/msm/mdp3_ctrl.c @@ -305,7 +305,7 @@ static ssize_t mdp3_vsync_show_event(struct device *dev, vsync_ticks = ktime_to_ns(mdp3_session->vsync_time); pr_debug("fb%d vsync=%llu", mfd->index, vsync_ticks); - rc = scnprintf(buf, PAGE_SIZE, "VSYNC=%llu", vsync_ticks); + rc = scnprintf(buf, PAGE_SIZE, "VSYNC=%llu\n", vsync_ticks); return rc; } |
