diff options
author | Stephen Boyd <sboyd@kernel.org> | 2018-12-06 10:38:31 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-12-10 14:43:20 -0800 |
commit | c179c21e2c7a83b521984b75505c6bbfed23242a (patch) | |
tree | 890e065f342e88c5317800d2871781380c1e6bde /drivers/clk/st/clkgen-pll.c | |
parent | ddbae6658d4dc495ac62f7977062b33bb15d1af6 (diff) | |
download | lwn-c179c21e2c7a83b521984b75505c6bbfed23242a.tar.gz lwn-c179c21e2c7a83b521984b75505c6bbfed23242a.zip |
clk: st: Remove usage of CLK_IS_BASIC
This flag doesn't look to be used by any code, just set in various clk
init structures and then never tested again. Remove it from these
drivers as it doesn't provide any benefit.
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/st/clkgen-pll.c')
-rw-r--r-- | drivers/clk/st/clkgen-pll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/st/clkgen-pll.c b/drivers/clk/st/clkgen-pll.c index 7a7106dc80bf..6930348ce843 100644 --- a/drivers/clk/st/clkgen-pll.c +++ b/drivers/clk/st/clkgen-pll.c @@ -613,7 +613,7 @@ static struct clk * __init clkgen_pll_register(const char *parent_name, init.name = clk_name; init.ops = pll_data->ops; - init.flags = pll_flags | CLK_IS_BASIC | CLK_GET_RATE_NOCACHE; + init.flags = pll_flags | CLK_GET_RATE_NOCACHE; init.parent_names = &parent_name; init.num_parents = 1; |