mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
clk: qcom: gcc-msm8974: switch from sleep_clk_src to sleep_clk
gcc-msm8974 uses the registered sleep_clk_src clock, which is just a 1:1 fixed factor clock register on top of the board's sleep_clk. Switch the driver to use the board sleep_clk directly. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Bjorn Andersson <andersson@kernel.org> Link: https://lore.kernel.org/r/20221228203725.3131237-1-dmitry.baryshkov@linaro.org
This commit is contained in:
parent
a615df45bd
commit
e09327d7be
@ -2110,7 +2110,7 @@ static struct clk_branch gcc_sdcc1_cdccal_sleep_clk = {
|
||||
.hw.init = &(struct clk_init_data){
|
||||
.name = "gcc_sdcc1_cdccal_sleep_clk",
|
||||
.parent_data = (const struct clk_parent_data[]){
|
||||
{ .fw_name = "sleep_clk", .name = "sleep_clk_src" }
|
||||
{ .fw_name = "sleep_clk", .name = "sleep_clk" }
|
||||
},
|
||||
.num_parents = 1,
|
||||
.ops = &clk_branch2_ops,
|
||||
@ -2275,7 +2275,7 @@ static struct clk_branch gcc_usb2a_phy_sleep_clk = {
|
||||
.hw.init = &(struct clk_init_data){
|
||||
.name = "gcc_usb2a_phy_sleep_clk",
|
||||
.parent_data = &(const struct clk_parent_data){
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk_src",
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk",
|
||||
},
|
||||
.num_parents = 1,
|
||||
.ops = &clk_branch2_ops,
|
||||
@ -2291,7 +2291,7 @@ static struct clk_branch gcc_usb2b_phy_sleep_clk = {
|
||||
.hw.init = &(struct clk_init_data){
|
||||
.name = "gcc_usb2b_phy_sleep_clk",
|
||||
.parent_data = &(const struct clk_parent_data){
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk_src",
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk",
|
||||
},
|
||||
.num_parents = 1,
|
||||
.ops = &clk_branch2_ops,
|
||||
@ -2341,7 +2341,7 @@ static struct clk_branch gcc_usb30_sleep_clk = {
|
||||
.hw.init = &(struct clk_init_data){
|
||||
.name = "gcc_usb30_sleep_clk",
|
||||
.parent_data = &(const struct clk_parent_data){
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk_src",
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk",
|
||||
},
|
||||
.num_parents = 1,
|
||||
.ops = &clk_branch2_ops,
|
||||
@ -2440,7 +2440,7 @@ static struct clk_branch gcc_usb_hsic_io_cal_sleep_clk = {
|
||||
.hw.init = &(struct clk_init_data){
|
||||
.name = "gcc_usb_hsic_io_cal_sleep_clk",
|
||||
.parent_data = &(const struct clk_parent_data){
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk_src",
|
||||
.fw_name = "sleep_clk", .name = "sleep_clk",
|
||||
},
|
||||
.num_parents = 1,
|
||||
.ops = &clk_branch2_ops,
|
||||
|
Loading…
Reference in New Issue
Block a user