mirror of https://gitee.com/openkylin/linux.git
clk: Don't check for missing ops in clk_set_parent()
We dereference clk->ops during clock registration so this check for NULL ops can't possibly ever be true. Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
This commit is contained in:
parent
8d90c5aff3
commit
86a612349f
|
@ -1716,9 +1716,6 @@ int clk_set_parent(struct clk *clk, struct clk *parent)
|
|||
if (!clk)
|
||||
return 0;
|
||||
|
||||
if (!clk->ops)
|
||||
return -EINVAL;
|
||||
|
||||
/* verify ops for for multi-parent clks */
|
||||
if ((clk->num_parents > 1) && (!clk->ops->set_parent))
|
||||
return -ENOSYS;
|
||||
|
|
Loading…
Reference in New Issue