diff options
author | Vinod Koul <vkoul@kernel.org> | 2018-11-09 04:50:54 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-11-09 17:13:55 -0500 |
commit | 1aefa98b010e9cc7a07046cbcb1237ddad85b708 (patch) | |
tree | f63b283654b5a96ca2b18df06fd1f9537dd5e56e | |
parent | d6ee1e7e9004d3d246cdfa14196989e0a9466c16 (diff) |
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>
-rw-r--r-- | drivers/clk/qcom/gcc-qcs404.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/gcc-qcs404.c b/drivers/clk/qcom/gcc-qcs404.c index e4ca6a45f313..ef1b267cb058 100644 --- a/drivers/clk/qcom/gcc-qcs404.c +++ b/drivers/clk/qcom/gcc-qcs404.c | |||
@@ -265,7 +265,7 @@ static struct clk_fixed_factor cxo = { | |||
265 | .div = 1, | 265 | .div = 1, |
266 | .hw.init = &(struct clk_init_data){ | 266 | .hw.init = &(struct clk_init_data){ |
267 | .name = "cxo", | 267 | .name = "cxo", |
268 | .parent_names = (const char *[]){ "xo_board" }, | 268 | .parent_names = (const char *[]){ "xo-board" }, |
269 | .num_parents = 1, | 269 | .num_parents = 1, |
270 | .ops = &clk_fixed_factor_ops, | 270 | .ops = &clk_fixed_factor_ops, |
271 | }, | 271 | }, |