From ae4ed9a00d6628f2e2d911cc13bc21d57286cc3e Mon Sep 17 00:00:00 2001 From: Ingrid Gallardo Date: Fri, 10 Apr 2015 12:43:58 -0700 Subject: [PATCH] msm: mdss: fix typo in exposed mdp capabilities Fix typo in mdp capabilities that are exposed to user space. Code was missing a new line sign, causing two capabilities to be appended in the same line. Change-Id: I005c710f6dcda623b3048cb2d9d4c601a80bf3c9 Signed-off-by: Ingrid Gallardo --- drivers/video/fbdev/msm/mdss_mdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/msm/mdss_mdp.c b/drivers/video/fbdev/msm/mdss_mdp.c index 32b00171a5a4..24402894d32a 100644 --- a/drivers/video/fbdev/msm/mdss_mdp.c +++ b/drivers/video/fbdev/msm/mdss_mdp.c @@ -1588,7 +1588,7 @@ static ssize_t mdss_mdp_show_capabilities(struct device *dev, } if (mdata->props) - SPRINT("props=%d", mdata->props); + SPRINT("props=%d\n", mdata->props); if (mdata->max_bw_low) SPRINT("max_bandwidth_low=%u\n", mdata->max_bw_low); if (mdata->max_bw_high)