提交 4ececb7d 编写于 作者: W Wolfram Sang

Revert "i2c: jz4780: prevent potential division by zero"

This reverts commit 34cf2acd. 'ret' is
not set when bailing out. Also, there is a better place to check for 0.
Reported-by: NAxel Lin <axel.lin@ingics.com>
Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
上级 34cf2acd
......@@ -770,7 +770,7 @@ static int jz4780_i2c_probe(struct platform_device *pdev)
ret = of_property_read_u32(pdev->dev.of_node, "clock-frequency",
&clk_freq);
if (ret || clk_freq == 0) {
if (ret) {
dev_err(&pdev->dev, "clock-frequency not specified in DT");
goto err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册