Commit f246affc authored by Stephen Boyd's avatar Stephen Boyd

clk: samsung: s3c2410: Remove usage of CLK_IS_BASIC

This flag doesn't look to be used by any code, just set in the clk init
structure and then never tested again. Remove it from this drivers as it
doesn't provide any benefit.

Cc: Kukjin Kim <kgene@kernel.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Acked-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 354e1210
...@@ -105,7 +105,7 @@ static struct clk_hw *s3c24xx_register_clkout(struct device *dev, ...@@ -105,7 +105,7 @@ static struct clk_hw *s3c24xx_register_clkout(struct device *dev,
init.name = name; init.name = name;
init.ops = &s3c24xx_clkout_ops; init.ops = &s3c24xx_clkout_ops;
init.flags = CLK_IS_BASIC; init.flags = 0;
init.parent_names = parent_names; init.parent_names = parent_names;
init.num_parents = num_parents; init.num_parents = num_parents;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment