diff options
Diffstat (limited to 'drivers/media/i2c/smiapp-pll.c')
-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, | |||
194 | 194 | ||
195 | if (more_mul_min > more_mul_max) { | 195 | if (more_mul_min > more_mul_max) { |
196 | dev_warn(dev, | 196 | dev_warn(dev, |
197 | "unable to compute more_mul_min and more_mul_max"); | 197 | "unable to compute more_mul_min and more_mul_max\n"); |
198 | return -EINVAL; | 198 | return -EINVAL; |
199 | } | 199 | } |
200 | 200 | ||
@@ -209,7 +209,7 @@ int smiapp_pll_calculate(struct device *dev, struct smiapp_pll_limits *limits, | |||
209 | 209 | ||
210 | dev_dbg(dev, "final more_mul: %d\n", i); | 210 | dev_dbg(dev, "final more_mul: %d\n", i); |
211 | if (i > more_mul_max) { | 211 | if (i > more_mul_max) { |
212 | dev_warn(dev, "final more_mul is bad, max %d", more_mul_max); | 212 | dev_warn(dev, "final more_mul is bad, max %d\n", more_mul_max); |
213 | return -EINVAL; | 213 | return -EINVAL; |
214 | } | 214 | } |
215 | 215 | ||