diff options
author | Pu Lehui <pulehui@huawei.com> | 2021-06-09 14:18:48 +0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-06-27 17:04:48 -0700 |
commit | 652c96bb9bfe5e28f859785575d68e8d50140c14 (patch) | |
tree | 09878356201da17aea0a3baa51ad1e322ddf2dfd /drivers/clk | |
parent | d1312020feec95d43bde0e04b4cf16916f979393 (diff) |
clk/qcom: Remove unused variables
Fix gcc '-Wunused-const-variable' warnings:
drivers/clk/qcom/gcc-mdm9607.c:122:37: warning: 'gcc_xo_gpll0_gpll1'
defined but not used [-Wunused-const-variable=]
drivers/clk/qcom/gcc-mdm9607.c:116:32: warning: 'gcc_xo_gpll0_gpll1_map'
defined but not used [-Wunused-const-variable=]
drivers/clk/qcom/gcc-mdm9607.c:42:37: warning: 'gcc_xo_sleep' defined
but not used [-Wunused-const-variable=]
drivers/clk/qcom/gcc-mdm9607.c:37:32: warning: 'gcc_xo_sleep_map'
defined but not used [-Wunused-const-variable=]
Let's remove them.
Signed-off-by: Pu Lehui <pulehui@huawei.com>
Link: https://lore.kernel.org/r/20210609061848.87415-1-pulehui@huawei.com
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/qcom/gcc-mdm9607.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/drivers/clk/qcom/gcc-mdm9607.c b/drivers/clk/qcom/gcc-mdm9607.c index 5918dc51ffcd..4c9078e99bb3 100644 --- a/drivers/clk/qcom/gcc-mdm9607.c +++ b/drivers/clk/qcom/gcc-mdm9607.c @@ -34,16 +34,6 @@ enum { P_SLEEP_CLK, }; -static const struct parent_map gcc_xo_sleep_map[] = { - { P_XO, 0 }, - { P_SLEEP_CLK, 6 } -}; - -static const struct clk_parent_data gcc_xo_sleep[] = { - { .fw_name = "xo" }, - { .fw_name = "sleep_clk" }, -}; - static struct clk_alpha_pll gpll0_early = { .offset = 0x21000, .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_DEFAULT], @@ -113,19 +103,6 @@ static struct clk_regmap gpll1_vote = { }, }; -static const struct parent_map gcc_xo_gpll0_gpll1_map[] = { - { P_XO, 0 }, - { P_GPLL0, 1 }, - { P_GPLL1, 2 }, -}; - -static const struct clk_parent_data gcc_xo_gpll0_gpll1[] = { - { .fw_name = "xo" }, - { .hw = &gpll0.clkr.hw }, - { .hw = &gpll1_vote.hw }, -}; - - static const struct parent_map gcc_xo_gpll0_gpll1_sleep_map[] = { { P_XO, 0 }, { P_GPLL0, 1 }, |