Commit e53f2086 authored by Martin Botka's avatar Martin Botka Committed by Stephen Boyd

clk: qcom: sm6125-gcc: Swap ops of ice and apps on sdcc1

Without this change eMMC runs at overclocked freq.
Swap the ops to not OC the eMMC.
Signed-off-by: default avatarMartin Botka <martin.botka@somainline.org>
Link: https://lore.kernel.org/r/20211130212015.25232-1-martin.botka@somainline.orgReviewed-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Fixes: 4b8d6ae5 ("clk: qcom: Add SM6125 (TRINKET) GCC driver")
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent eee377b8
......@@ -1121,7 +1121,7 @@ static struct clk_rcg2 gcc_sdcc1_apps_clk_src = {
.name = "gcc_sdcc1_apps_clk_src",
.parent_data = gcc_parent_data_1,
.num_parents = ARRAY_SIZE(gcc_parent_data_1),
.ops = &clk_rcg2_ops,
.ops = &clk_rcg2_floor_ops,
},
};
......@@ -1143,7 +1143,7 @@ static struct clk_rcg2 gcc_sdcc1_ice_core_clk_src = {
.name = "gcc_sdcc1_ice_core_clk_src",
.parent_data = gcc_parent_data_0,
.num_parents = ARRAY_SIZE(gcc_parent_data_0),
.ops = &clk_rcg2_floor_ops,
.ops = &clk_rcg2_ops,
},
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment