提交 180cf794 编写于 作者: M Markus Elfring 提交者: Mark Brown

ASoC: fsi: Deletion of unnecessary checks before the function call "clk_enable"

The clk_enable() function tests whether its argument is NULL and then
returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.
Signed-off-by: NMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 97bf6af1
...@@ -820,12 +820,9 @@ static int fsi_clk_enable(struct device *dev, ...@@ -820,12 +820,9 @@ static int fsi_clk_enable(struct device *dev,
return ret; return ret;
} }
if (clock->xck) clk_enable(clock->xck);
clk_enable(clock->xck); clk_enable(clock->ick);
if (clock->ick) clk_enable(clock->div);
clk_enable(clock->ick);
if (clock->div)
clk_enable(clock->div);
clock->count++; clock->count++;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册