From: Jerome Brunet Date: Mon, 19 Feb 2018 11:21:36 +0000 (+0100) Subject: clk: meson: add fractional part of meson8b fixed_pll X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2eab2d7cab2804f767b84cbdd06d291214d61df4;p=linux.git clk: meson: add fractional part of meson8b fixed_pll Add the missing frac parameter to the meson8b fixed_pll. It seems to be always on this platform, so the rate remains unchanged Signed-off-by: Jerome Brunet Signed-off-by: Neil Armstrong --- diff --git a/drivers/clk/meson/meson8b.c b/drivers/clk/meson/meson8b.c index ea73b5de96725..62c54a75a1d29 100644 --- a/drivers/clk/meson/meson8b.c +++ b/drivers/clk/meson/meson8b.c @@ -125,6 +125,11 @@ static struct clk_regmap meson8b_fixed_pll = { .shift = 16, .width = 2, }, + .frac = { + .reg_off = HHI_MPLL_CNTL2, + .shift = 0, + .width = 12, + }, .l = { .reg_off = HHI_MPLL_CNTL, .shift = 31,