Skip to content

Commit 1aefa98

Browse files
vinodkoulbebarino
authored andcommitted
clk: qcom: gcc: Fix board clock node name
Device tree node name are not supposed to have "_" in them so fix the node name use of xo_board to xo-board Fixes: 652f181 ("clk: qcom: gcc: Add global clock controller driver for QCS404") Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent d6ee1e7 commit 1aefa98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/qcom/gcc-qcs404.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ static struct clk_fixed_factor cxo = {
265265
.div = 1,
266266
.hw.init = &(struct clk_init_data){
267267
.name = "cxo",
268-
.parent_names = (const char *[]){ "xo_board" },
268+
.parent_names = (const char *[]){ "xo-board" },
269269
.num_parents = 1,
270270
.ops = &clk_fixed_factor_ops,
271271
},

0 commit comments

Comments
 (0)