Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1aefa98b authored by Vinod Koul's avatar Vinod Koul Committed by Stephen Boyd
Browse files

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: 652f1813 ("clk: qcom: gcc: Add global clock controller driver for QCS404")
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent d6ee1e7e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ static struct clk_fixed_factor cxo = {
	.div = 1,
	.hw.init = &(struct clk_init_data){
		.name = "cxo",
		.parent_names = (const char *[]){ "xo_board" },
		.parent_names = (const char *[]){ "xo-board" },
		.num_parents = 1,
		.ops = &clk_fixed_factor_ops,
	},