Commit 445aeeb5 authored by Wei Yongjun's avatar Wei Yongjun Committed by Jassi Brar

mailbox: zynqmp-ipi: Fix NULL vs IS_ERR() check in zynqmp_ipi_mbox_probe()

In case of error, the function devm_ioremap() returns NULL pointer not
ERR_PTR(). So we should check whether the return value of devm_ioremap()
is NULL instead of IS_ERR.

Fixes: 4981b82b ("mailbox: ZynqMP IPI mailbox controller")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
parent 9d8ca628
...@@ -504,10 +504,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox, ...@@ -504,10 +504,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox,
mchan->req_buf_size = resource_size(&res); mchan->req_buf_size = resource_size(&res);
mchan->req_buf = devm_ioremap(mdev, res.start, mchan->req_buf = devm_ioremap(mdev, res.start,
mchan->req_buf_size); mchan->req_buf_size);
if (IS_ERR(mchan->req_buf)) { if (!mchan->req_buf) {
dev_err(mdev, "Unable to map IPI buffer I/O memory\n"); dev_err(mdev, "Unable to map IPI buffer I/O memory\n");
ret = PTR_ERR(mchan->req_buf); return -ENOMEM;
return ret;
} }
} else if (ret != -ENODEV) { } else if (ret != -ENODEV) {
dev_err(mdev, "Unmatched resource %s, %d.\n", name, ret); dev_err(mdev, "Unmatched resource %s, %d.\n", name, ret);
...@@ -520,10 +519,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox, ...@@ -520,10 +519,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox,
mchan->resp_buf_size = resource_size(&res); mchan->resp_buf_size = resource_size(&res);
mchan->resp_buf = devm_ioremap(mdev, res.start, mchan->resp_buf = devm_ioremap(mdev, res.start,
mchan->resp_buf_size); mchan->resp_buf_size);
if (IS_ERR(mchan->resp_buf)) { if (!mchan->resp_buf) {
dev_err(mdev, "Unable to map IPI buffer I/O memory\n"); dev_err(mdev, "Unable to map IPI buffer I/O memory\n");
ret = PTR_ERR(mchan->resp_buf); return -ENOMEM;
return ret;
} }
} else if (ret != -ENODEV) { } else if (ret != -ENODEV) {
dev_err(mdev, "Unmatched resource %s.\n", name); dev_err(mdev, "Unmatched resource %s.\n", name);
...@@ -543,10 +541,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox, ...@@ -543,10 +541,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox,
mchan->req_buf_size = resource_size(&res); mchan->req_buf_size = resource_size(&res);
mchan->req_buf = devm_ioremap(mdev, res.start, mchan->req_buf = devm_ioremap(mdev, res.start,
mchan->req_buf_size); mchan->req_buf_size);
if (IS_ERR(mchan->req_buf)) { if (!mchan->req_buf) {
dev_err(mdev, "Unable to map IPI buffer I/O memory\n"); dev_err(mdev, "Unable to map IPI buffer I/O memory\n");
ret = PTR_ERR(mchan->req_buf); return -ENOMEM;
return ret;
} }
} else if (ret != -ENODEV) { } else if (ret != -ENODEV) {
dev_err(mdev, "Unmatched resource %s.\n", name); dev_err(mdev, "Unmatched resource %s.\n", name);
...@@ -559,10 +556,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox, ...@@ -559,10 +556,9 @@ static int zynqmp_ipi_mbox_probe(struct zynqmp_ipi_mbox *ipi_mbox,
mchan->resp_buf_size = resource_size(&res); mchan->resp_buf_size = resource_size(&res);
mchan->resp_buf = devm_ioremap(mdev, res.start, mchan->resp_buf = devm_ioremap(mdev, res.start,
mchan->resp_buf_size); mchan->resp_buf_size);
if (IS_ERR(mchan->resp_buf)) { if (!mchan->resp_buf) {
dev_err(mdev, "Unable to map IPI buffer I/O memory\n"); dev_err(mdev, "Unable to map IPI buffer I/O memory\n");
ret = PTR_ERR(mchan->resp_buf); return -ENOMEM;
return ret;
} }
} else if (ret != -ENODEV) { } else if (ret != -ENODEV) {
dev_err(mdev, "Unmatched resource %s.\n", name); dev_err(mdev, "Unmatched resource %s.\n", name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment