From: Stephen Boyd Date: Tue, 1 Mar 2016 19:00:22 +0000 (-0800) Subject: clk: scpi: Remove CLK_IS_ROOT X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=905936823ec56c451357f4ca75ceff8092bea2f0;p=linux-beck.git clk: scpi: Remove CLK_IS_ROOT This flag is a no-op now. Remove usage of the flag. Acked-by: Sudeep Holla Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/clk-scpi.c b/drivers/clk/clk-scpi.c index 89e9ca78bb94..6962ee5d1e9a 100644 --- a/drivers/clk/clk-scpi.c +++ b/drivers/clk/clk-scpi.c @@ -155,7 +155,7 @@ scpi_clk_ops_init(struct device *dev, const struct of_device_id *match, unsigned long min = 0, max = 0; init.name = name; - init.flags = CLK_IS_ROOT; + init.flags = 0; init.num_parents = 0; init.ops = match->data; sclk->hw.init = &init;