aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/clk/meson/gxbb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/meson/gxbb.c b/drivers/clk/meson/gxbb.c
index 8409d86cda24..0bd028adadd5 100644
--- a/drivers/clk/meson/gxbb.c
+++ b/drivers/clk/meson/gxbb.c
@@ -845,13 +845,14 @@ static struct meson_clk_audio_divider gxbb_cts_amclk_div = {
845 .shift = 0, 845 .shift = 0,
846 .width = 8, 846 .width = 8,
847 }, 847 },
848 .flags = CLK_DIVIDER_ROUND_CLOSEST,
848 .lock = &clk_lock, 849 .lock = &clk_lock,
849 .hw.init = &(struct clk_init_data){ 850 .hw.init = &(struct clk_init_data){
850 .name = "cts_amclk_div", 851 .name = "cts_amclk_div",
851 .ops = &meson_clk_audio_divider_ops, 852 .ops = &meson_clk_audio_divider_ops,
852 .parent_names = (const char *[]){ "cts_amclk_sel" }, 853 .parent_names = (const char *[]){ "cts_amclk_sel" },
853 .num_parents = 1, 854 .num_parents = 1,
854 .flags = CLK_SET_RATE_PARENT | CLK_DIVIDER_ROUND_CLOSEST, 855 .flags = CLK_SET_RATE_PARENT,
855 }, 856 },
856}; 857};
857 858