Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 803c4331 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

clk: si5{14,351,70}: Remove CLK_IS_ROOT



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: default avatarSören Brinkmann <soren.brinkmann@xilinx.com>
Cc: Mike Looijmans <mike.looijmans@topic.nl>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 90593682
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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 {
+1 −1
Original line number Diff line number Diff line
@@ -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;