From: Laurent Pinchart Date: Thu, 18 Oct 2012 13:31:44 +0000 (-0300) Subject: [media] smiapp-pll: Add missing trailing newlines to warning messages X-Git-Tag: v3.9-rc5~2^2~742 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b351f8663a3298103dbaef011a5068526ac556a9;p=platform%2Fupstream%2Fkernel-adaptation-pc.git [media] smiapp-pll: Add missing trailing newlines to warning messages Two warning messages are missing a trailing newline. Fix it. Signed-off-by: Laurent Pinchart Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/smiapp-pll.c b/drivers/media/i2c/smiapp-pll.c index a577614..169f305 100644 --- a/drivers/media/i2c/smiapp-pll.c +++ b/drivers/media/i2c/smiapp-pll.c @@ -194,7 +194,7 @@ int smiapp_pll_calculate(struct device *dev, struct smiapp_pll_limits *limits, if (more_mul_min > more_mul_max) { dev_warn(dev, - "unable to compute more_mul_min and more_mul_max"); + "unable to compute more_mul_min and more_mul_max\n"); return -EINVAL; } @@ -209,7 +209,7 @@ int smiapp_pll_calculate(struct device *dev, struct smiapp_pll_limits *limits, dev_dbg(dev, "final more_mul: %d\n", i); if (i > more_mul_max) { - dev_warn(dev, "final more_mul is bad, max %d", more_mul_max); + dev_warn(dev, "final more_mul is bad, max %d\n", more_mul_max); return -EINVAL; }