OSDN Git Service

clk: ti: Remove CLK_IS_ROOT
authorStephen Boyd <sboyd@codeaurora.org>
Tue, 1 Mar 2016 19:00:03 +0000 (11:00 -0800)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 3 Mar 2016 01:47:46 +0000 (17:47 -0800)
This flag is a no-op now. Remove usage of the flag.

Acked-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/ti/clk.c

index b5bcd77..5fcf247 100644 (file)
@@ -305,8 +305,8 @@ struct clk __init *ti_clk_register_clk(struct ti_clk *setup)
        case TI_CLK_FIXED:
                fixed = setup->data;
 
-               clk = clk_register_fixed_rate(NULL, setup->name, NULL,
-                                             CLK_IS_ROOT, fixed->frequency);
+               clk = clk_register_fixed_rate(NULL, setup->name, NULL, 0,
+                                             fixed->frequency);
                break;
        case TI_CLK_MUX:
                clk = ti_clk_register_mux(setup);