clk: meson: gxbb: fix meson cts_amclk divider flags
authorJerome Brunet <jbrunet@baylibre.com>
Thu, 27 Jul 2017 13:09:39 +0000 (15:09 +0200)
committerNeil Armstrong <narmstrong@baylibre.com>
Fri, 4 Aug 2017 16:01:59 +0000 (18:01 +0200)
CLK_DIVIDER_ROUND_CLOSEST was incorrectly put in the hw.init flags
while it should have been in the divider flags

Fixes: 4087bd4b2170 ("clk: meson: gxbb: add cts_amclk")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
drivers/clk/meson/gxbb.c

index 8409d86..0bd028a 100644 (file)
@@ -845,13 +845,14 @@ static struct meson_clk_audio_divider gxbb_cts_amclk_div = {
                .shift   = 0,
                .width   = 8,
        },
+       .flags = CLK_DIVIDER_ROUND_CLOSEST,
        .lock = &clk_lock,
        .hw.init = &(struct clk_init_data){
                .name = "cts_amclk_div",
                .ops = &meson_clk_audio_divider_ops,
                .parent_names = (const char *[]){ "cts_amclk_sel" },
                .num_parents = 1,
-               .flags = CLK_SET_RATE_PARENT | CLK_DIVIDER_ROUND_CLOSEST,
+               .flags = CLK_SET_RATE_PARENT,
        },
 };