mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
clk: qcom: gpu_cc_gmu_clk_src has 5 parents, not 6
In an earlier version of commit453361cdd7
("clk: qcom: Add graphics clock controller driver for SDM845") there were 6 listed parents for "gpu_cc_gmu_clk_src". In the version that landed there were 5. ...but "num_parents" was still left at 6. On my system this goes boom at bootup. Fixes:453361cdd7
("clk: qcom: Add graphics clock controller driver for SDM845") Signed-off-by: Douglas Anderson <dianders@chromium.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
85a3d920d3
commit
74c31ff9c8
@ -85,7 +85,7 @@ static struct clk_rcg2 gpu_cc_gmu_clk_src = {
|
||||
.clkr.hw.init = &(struct clk_init_data){
|
||||
.name = "gpu_cc_gmu_clk_src",
|
||||
.parent_names = gpu_cc_parent_names_0,
|
||||
.num_parents = 6,
|
||||
.num_parents = 5,
|
||||
.ops = &clk_rcg2_shared_ops,
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user