提交 9b6d0d33 编写于 作者: A Andrzej Hajda 提交者: Philipp Zabel

gpu: ipu-v3: fix div_ratio type

The variable can be negative.

The problem has been detected using proposed semantic patch
scripts/coccinelle/tests/unsigned_lesser_than_zero.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2038576Signed-off-by: NAndrzej Hajda <a.hajda@samsung.com>
Signed-off-by: NPhilipp Zabel <p.zabel@pengutronix.de>
上级 3e8b2246
...@@ -202,7 +202,7 @@ static int ipu_csi_set_testgen_mclk(struct ipu_csi *csi, u32 pixel_clk, ...@@ -202,7 +202,7 @@ static int ipu_csi_set_testgen_mclk(struct ipu_csi *csi, u32 pixel_clk,
u32 ipu_clk) u32 ipu_clk)
{ {
u32 temp; u32 temp;
u32 div_ratio; int div_ratio;
div_ratio = (ipu_clk / pixel_clk) - 1; div_ratio = (ipu_clk / pixel_clk) - 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册