diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-10-15 19:51:17 +0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-10-16 13:05:19 -0700 |
commit | b8cb1ef95b6e2b67f06f5254d01d5411cf2c79ae (patch) | |
tree | 3e210bca87f5abd6294d75c2325f72e582858471 /drivers/clk/clk-ast2600.c | |
parent | 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c (diff) | |
download | linux-b8cb1ef95b6e2b67f06f5254d01d5411cf2c79ae.tar.bz2 |
clk: ast2600: remove unused variable 'eclk_parent_names'
drivers/clk/clk-ast2600.c:119:27: warning:
eclk_parent_names defined but not used [-Wunused-const-variable=]
It is never used, so can be removed.
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lkml.kernel.org/r/20191015115117.23504-1-yuehaibing@huawei.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk-ast2600.c')
-rw-r--r-- | drivers/clk/clk-ast2600.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/clk/clk-ast2600.c b/drivers/clk/clk-ast2600.c index 1c1bb39bb04e..ebaafb57a24f 100644 --- a/drivers/clk/clk-ast2600.c +++ b/drivers/clk/clk-ast2600.c @@ -116,8 +116,6 @@ static const struct aspeed_gate_data aspeed_g6_gates[] = { [ASPEED_CLK_GATE_FSICLK] = { 62, 59, "fsiclk-gate", NULL, 0 }, /* FSI */ }; -static const char * const eclk_parent_names[] = { "mpll", "hpll", "dpll" }; - static const struct clk_div_table ast2600_eclk_div_table[] = { { 0x0, 2 }, { 0x1, 2 }, |