提交 f4e1f9bb 编写于 作者: W Wei Yongjun 提交者: Bjorn Andersson

remoteproc: qcom: wcnss: Fix return value check in wcnss_probe()

In case of error, the function devm_ioremap_resource() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check should
be replaced with IS_ERR().
Signed-off-by: NWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: NBjorn Andersson <bjorn.andersson@linaro.org>
上级 aed361ad
......@@ -528,8 +528,8 @@ static int wcnss_probe(struct platform_device *pdev)
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pmu");
mmio = devm_ioremap_resource(&pdev->dev, res);
if (!mmio) {
ret = -ENOMEM;
if (IS_ERR(mmio)) {
ret = PTR_ERR(mmio);
goto free_rproc;
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册