clk: si5{14,351,70}: Remove CLK_IS_ROOT
authorStephen Boyd <sboyd@codeaurora.org>
Tue, 1 Mar 2016 19:00:23 +0000 (11:00 -0800)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 3 Mar 2016 01:51:13 +0000 (17:51 -0800)
This flag is a no-op now. Remove usage of the flag.

Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Cc: Mike Looijmans <mike.looijmans@topic.nl>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk-si514.c
drivers/clk/clk-si5351.c
drivers/clk/clk-si570.c

index 6af7dce542411eadc79ea308fa89307efb36f11c..ceef25b0990bb96df60ae6334859b1246e2ac86a 100644 (file)
@@ -313,7 +313,7 @@ static int si514_probe(struct i2c_client *client,
                return -ENOMEM;
 
        init.ops = &si514_clk_ops;
-       init.flags = CLK_IS_ROOT;
+       init.flags = 0;
        init.num_parents = 0;
        data->hw.init = &init;
        data->i2c_client = client;
index 850316ac88317a485dd77e8811dac736ce8da6ac..b1bc12c045d34aff63f271bcc6faf93ecce2bff0 100644 (file)
@@ -1495,7 +1495,7 @@ static int si5351_i2c_probe(struct i2c_client *client,
        if (drvdata->variant == SI5351_VARIANT_B) {
                init.name = si5351_pll_names[2];
                init.ops = &si5351_vxco_ops;
-               init.flags = CLK_IS_ROOT;
+               init.flags = 0;
                init.parent_names = NULL;
                init.num_parents = 0;
        } else {
index cf478aa9fa5d9e9b791d6fc9cd32ffaa1864d10a..d56648521a958ca6f78dda775f279ca7fceae0c4 100644 (file)
@@ -418,7 +418,7 @@ static int si570_probe(struct i2c_client *client,
                return -ENOMEM;
 
        init.ops = &si570_clk_ops;
-       init.flags = CLK_IS_ROOT;
+       init.flags = 0;
        init.num_parents = 0;
        data->hw.init = &init;
        data->i2c_client = client;
This page took 0.030999 seconds and 5 git commands to generate.