From: Hans de Goede Date: Sat, 24 Jan 2015 11:56:32 +0000 (+0100) Subject: sunxi: clk: Set sun6i-pll1 n_start = 1 X-Git-Tag: v3.16.35~2653 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1abfd1cbc3de75a48cc86e9b89e907f178fa6bb7;p=thirdparty%2Fkernel%2Fstable.git sunxi: clk: Set sun6i-pll1 n_start = 1 commit 76820fcf7aa5a418b69cb7bed31b62d1feb1d6ad upstream. For all pll-s on sun6i n == 0 means use a multiplier of 1, rather then 0 as it means on sun4i / sun5i / sun7i. n_start = 1 is already correctly set for sun6i pll6, but was missing for pll1, this commit fixes this. Cc: Chen-Yu Tsai Signed-off-by: Hans de Goede Signed-off-by: Maxime Ripard Signed-off-by: Luis Henriques --- diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c index fb2ce8440f0ed..067333c9b789f 100644 --- a/drivers/clk/sunxi/clk-sunxi.c +++ b/drivers/clk/sunxi/clk-sunxi.c @@ -420,6 +420,7 @@ static struct clk_factors_config sun6i_a31_pll1_config = { .kwidth = 2, .mshift = 0, .mwidth = 2, + .n_start = 1, }; static struct clk_factors_config sun4i_pll5_config = {