diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-10-18 17:31:44 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-29 15:47:14 +0400 |
commit | b351f8663a3298103dbaef011a5068526ac556a9 (patch) | |
tree | ba17e8d2147399f9ec5ba848d2e70a2530448c4f /drivers | |
parent | 0d0d76e5bcd70439b0e736a99539d7eef4f87baf (diff) | |
download | linux-b351f8663a3298103dbaef011a5068526ac556a9.tar.xz |
[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 <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/i2c/smiapp-pll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/i2c/smiapp-pll.c b/drivers/media/i2c/smiapp-pll.c index a577614bd84f..169f305e9121 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; } |