diff options
author | Stephen Boyd <sboyd@kernel.org> | 2018-11-30 20:07:30 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-12-10 23:43:21 +0100 |
commit | 5a727ff63032dc6cde780f960c6e3f22f8bf2783 (patch) | |
tree | 7db25f4b7d4f88e026acf6ddb6ce4cc1b980fd55 /drivers/clk/hisilicon/clk-hi3620.c | |
parent | clk: h8300: Remove usage of CLK_IS_BASIC (diff) | |
download | linux-5a727ff63032dc6cde780f960c6e3f22f8bf2783.tar.xz linux-5a727ff63032dc6cde780f960c6e3f22f8bf2783.zip |
clk: hisilicon: 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.
Cc: Jiancheng Xue <xuejiancheng@hisilicon.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Jianguo Sun <sunjianguo1@huawei.com>
Cc: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/hisilicon/clk-hi3620.c')
-rw-r--r-- | drivers/clk/hisilicon/clk-hi3620.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/hisilicon/clk-hi3620.c b/drivers/clk/hisilicon/clk-hi3620.c index 77072c7778b9..2eda9bdf6d03 100644 --- a/drivers/clk/hisilicon/clk-hi3620.c +++ b/drivers/clk/hisilicon/clk-hi3620.c @@ -435,7 +435,7 @@ static struct clk *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk, init.name = mmc_clk->name; init.ops = &clk_mmc_ops; - init.flags = mmc_clk->flags | CLK_IS_BASIC; + init.flags = mmc_clk->flags; init.parent_names = (mmc_clk->parent_name ? &mmc_clk->parent_name : NULL); init.num_parents = (mmc_clk->parent_name ? 1 : 0); mclk->hw.init = &init; |