aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/qcom/gpucc-msm8998.c
diff options
context:
space:
mode:
authorMarijn Suijten <marijn.suijten@somainline.org>2021-09-11 14:13:39 +0200
committerStephen Boyd <sboyd@kernel.org>2021-09-14 14:40:33 -0700
commit7837187cb9ce52d0dcaaaa69a630b2c30b07dd08 (patch)
tree5801811b8b449bcbf8c8c492167c462d0400a529 /drivers/clk/qcom/gpucc-msm8998.c
parentdt-bindings: clocks: qcom,gcc-msm8998: Reflect actually referenced clks (diff)
downloadlinux-dev-7837187cb9ce52d0dcaaaa69a630b2c30b07dd08.tar.xz
linux-dev-7837187cb9ce52d0dcaaaa69a630b2c30b07dd08.zip
clk: qcom: gpucc-msm8998: Remove unnecessary fallbacks to global clocks
A previous patch removes the "xo" clock from the global namespace making it impossible to acquire by that ".name". The device-tree for msm8998 already provides the "xo" and "gpll0" clock since the addition of the gpucc node making it unnecessary to have this fallback at all. Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@somainline.org> Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org> Link: https://lore.kernel.org/r/20210911121340.261920-8-marijn.suijten@somainline.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/qcom/gpucc-msm8998.c')
-rw-r--r--drivers/clk/qcom/gpucc-msm8998.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/clk/qcom/gpucc-msm8998.c b/drivers/clk/qcom/gpucc-msm8998.c
index 3ac6fbfbd414..a925ac90018d 100644
--- a/drivers/clk/qcom/gpucc-msm8998.c
+++ b/drivers/clk/qcom/gpucc-msm8998.c
@@ -40,8 +40,7 @@ static struct clk_branch gpucc_cxo_clk = {
.hw.init = &(struct clk_init_data){
.name = "gpucc_cxo_clk",
.parent_data = &(const struct clk_parent_data){
- .fw_name = "xo",
- .name = "xo"
+ .fw_name = "xo"
},
.num_parents = 1,
.ops = &clk_branch2_ops,
@@ -99,7 +98,7 @@ static const struct parent_map gpu_xo_gpll0_map[] = {
static const struct clk_parent_data gpu_xo_gpll0[] = {
{ .hw = &gpucc_cxo_clk.clkr.hw },
- { .fw_name = "gpll0", .name = "gpll0" },
+ { .fw_name = "gpll0" },
};
static const struct parent_map gpu_xo_gpupll0_map[] = {