diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 22:00:05 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-16 01:19:21 +0300 |
commit | ac82a8b5073631940b989c973f77fbaddd2526d0 (patch) | |
tree | 6f1f0879a1bebaa2ce181d4fd61f0e4ab1cae2af /drivers/clk/versatile/clk-vexpress-osc.c | |
parent | 1295e36a488efdad9b21eb0aeabfd0b23a87a313 (diff) | |
download | linux-ac82a8b5073631940b989c973f77fbaddd2526d0.tar.xz |
clk: versatile: Remove CLK_IS_ROOT
This flag is a no-op now. Remove usage of the flag.
Cc: Pawel Moll <pawel.moll@arm.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/versatile/clk-vexpress-osc.c')
-rw-r--r-- | drivers/clk/versatile/clk-vexpress-osc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/versatile/clk-vexpress-osc.c b/drivers/clk/versatile/clk-vexpress-osc.c index 89c0609e180b..7e5add7d7752 100644 --- a/drivers/clk/versatile/clk-vexpress-osc.c +++ b/drivers/clk/versatile/clk-vexpress-osc.c @@ -94,7 +94,7 @@ static int vexpress_osc_probe(struct platform_device *pdev) init.name = dev_name(&pdev->dev); init.ops = &vexpress_osc_ops; - init.flags = CLK_IS_ROOT; + init.flags = 0; init.num_parents = 0; osc->hw.init = &init; |