Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Vinod Koul and committed by
Stephen Boyd
1aefa98b d6ee1e7e

+1 -1
+1 -1
drivers/clk/qcom/gcc-qcs404.c
··· 265 265 .div = 1, 266 266 .hw.init = &(struct clk_init_data){ 267 267 .name = "cxo", 268 - .parent_names = (const char *[]){ "xo_board" }, 268 + .parent_names = (const char *[]){ "xo-board" }, 269 269 .num_parents = 1, 270 270 .ops = &clk_fixed_factor_ops, 271 271 },