vexpress/spc: Remove CLK_IS_ROOT
authorStephen Boyd <sboyd@codeaurora.org>
Wed, 20 Apr 2016 01:36:55 +0000 (18:36 -0700)
committerStephen Boyd <sboyd@codeaurora.org>
Wed, 1 Jun 2016 21:48:01 +0000 (14:48 -0700)
This flag is a no-op now (see commit 47b0eeb3dc8a "clk: Deprecate
CLK_IS_ROOT", 2016-02-02) so remove it.

Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
arch/arm/mach-vexpress/spc.c

index 5766ce2be32bbd28452c95ea9e43e92de0f4dcb0..8409cab3f760cc798a14cadc5f017feab53d1b65 100644 (file)
@@ -547,7 +547,7 @@ static struct clk *ve_spc_clk_register(struct device *cpu_dev)
 
        init.name = dev_name(cpu_dev);
        init.ops = &clk_spc_ops;
-       init.flags = CLK_IS_ROOT | CLK_GET_RATE_NOCACHE;
+       init.flags = CLK_GET_RATE_NOCACHE;
        init.num_parents = 0;
 
        return devm_clk_register(cpu_dev, &spc->hw);
This page took 0.027317 seconds and 5 git commands to generate.