提交 ffe57033 编写于 作者: W Wei Yongjun 提交者: Mauro Carvalho Chehab

[media] VPU: mediatek: fix return value check in mtk_vpu_probe()

In case of error, the function devm_clk_get() returns ERR_PTR()
and not returns NULL. The NULL test in the return value check
should be replaced with IS_ERR().
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 980e0b36
......@@ -788,9 +788,9 @@ static int mtk_vpu_probe(struct platform_device *pdev)
/* Get VPU clock */
vpu->clk = devm_clk_get(dev, "main");
if (!vpu->clk) {
if (IS_ERR(vpu->clk)) {
dev_err(dev, "get vpu clock failed\n");
return -EINVAL;
return PTR_ERR(vpu->clk);
}
platform_set_drvdata(pdev, vpu);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册