浏览代码

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: 652f1813c113 ("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>
Vinod Koul 6 年之前
父节点
当前提交
1aefa98b01
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/clk/qcom/gcc-qcs404.c

+ 1 - 1
drivers/clk/qcom/gcc-qcs404.c

@@ -265,7 +265,7 @@ static struct clk_fixed_factor cxo = {
 	.div = 1,
 	.div = 1,
 	.hw.init = &(struct clk_init_data){
 	.hw.init = &(struct clk_init_data){
 		.name = "cxo",
 		.name = "cxo",
-		.parent_names = (const char *[]){ "xo_board" },
+		.parent_names = (const char *[]){ "xo-board" },
 		.num_parents = 1,
 		.num_parents = 1,
 		.ops = &clk_fixed_factor_ops,
 		.ops = &clk_fixed_factor_ops,
 	},
 	},