Merge branch 'next/soc' into HEAD
[platform/adaptation/renesas_rcar/renesas_kernel.git] / arch / arm / mach-omap2 / clkt_dpll.c
index 0bf0ec3..83b658b 100644 (file)
@@ -105,13 +105,13 @@ static int _dpll_test_fint(struct clk *clk, u8 n)
        }
 
        if (fint < fint_min) {
-               pr_debug("rejecting n=%d due to Fint failure, "
-                        "lowering max_divider\n", n);
+               pr_debug("rejecting n=%d due to Fint failure, lowering max_divider\n",
+                        n);
                dd->max_divider = n;
                ret = DPLL_FINT_UNDERFLOW;
        } else if (fint > fint_max) {
-               pr_debug("rejecting n=%d due to Fint failure, "
-                        "boosting min_divider\n", n);
+               pr_debug("rejecting n=%d due to Fint failure, boosting min_divider\n",
+                        n);
                dd->min_divider = n;
                ret = DPLL_FINT_INVALID;
        } else if (cpu_is_omap3430() && fint > OMAP3430_DPLL_FINT_BAND1_MAX &&