mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
clk: qcom: smd-rpm: Switch to parent_data
Switch to parent_data and with that fix the longstanding issue where if there wasn't a clock precisely named "xo_board", rpmcc would not play along well. This started to show lately when "xo_board" was being changed to "xo-board" so as to align with DTS naming spec. Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> Link: https://lore.kernel.org/r/20210524225456.398817-1-konrad.dybcio@somainline.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
committed by
Stephen Boyd
parent
48b7253264
commit
52a436e0b7
@@ -39,7 +39,10 @@
|
|||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_smd_rpm_ops, \
|
.ops = &clk_smd_rpm_ops, \
|
||||||
.name = #_name, \
|
.name = #_name, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}; \
|
}; \
|
||||||
@@ -54,7 +57,10 @@
|
|||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_smd_rpm_ops, \
|
.ops = &clk_smd_rpm_ops, \
|
||||||
.name = #_active, \
|
.name = #_active, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}
|
}
|
||||||
@@ -73,7 +79,10 @@
|
|||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_smd_rpm_branch_ops, \
|
.ops = &clk_smd_rpm_branch_ops, \
|
||||||
.name = #_name, \
|
.name = #_name, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}; \
|
}; \
|
||||||
@@ -89,7 +98,10 @@
|
|||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_smd_rpm_branch_ops, \
|
.ops = &clk_smd_rpm_branch_ops, \
|
||||||
.name = #_active, \
|
.name = #_active, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user