提交 57802c52 编写于 作者: L Levente Kurusa 提交者: Mauro Carvalho Chehab

[media] staging: davinci_vpfe: fix error check

The check would check the pointer, which is never less than 0.
According to the error message, the correct check would be
to check the return value of ipipe_mode. Check that instead.
Reported-by: NDavid Binderman <dcb314@hotmail.com>
Signed-off-by: NLevente Kurusa <levex@linux.com>
Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
Signed-off-by: NLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
上级 6e9179e2
......@@ -267,7 +267,7 @@ int config_ipipe_hw(struct vpfe_ipipe_device *ipipe)
}
ipipe_mode = get_ipipe_mode(ipipe);
if (ipipe < 0) {
if (ipipe_mode < 0) {
pr_err("Failed to get ipipe mode");
return -EINVAL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册