aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCai Huoqing <caihuoqing@baidu.com>2021-09-07 15:41:17 +0800
committerJassi Brar <jaswinder.singh@linaro.org>2021-10-16 14:39:49 -0500
commita04f30356e75e5b785e17c1f2e858aaceb8c677f (patch)
treea9123f1b32c44c0e640cb84c59981d326de86ffc
parentmailbox: hi6220: Make use of the helper function devm_platform_ioremap_resource() (diff)
downloadlinux-dev-a04f30356e75e5b785e17c1f2e858aaceb8c677f.tar.xz
linux-dev-a04f30356e75e5b785e17c1f2e858aaceb8c677f.zip
mailbox: mtk-cmdq: Make use of the helper function devm_platform_ioremap_resource()
Use the devm_platform_ioremap_resource() helper instead of calling platform_get_resource() and devm_ioremap_resource() separately Signed-off-by: Cai Huoqing <caihuoqing@baidu.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
-rw-r--r--drivers/mailbox/mtk-cmdq-mailbox.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mailbox/mtk-cmdq-mailbox.c b/drivers/mailbox/mtk-cmdq-mailbox.c
index 64175a893312..505b4988680b 100644
--- a/drivers/mailbox/mtk-cmdq-mailbox.c
+++ b/drivers/mailbox/mtk-cmdq-mailbox.c
@@ -525,7 +525,6 @@ static struct mbox_chan *cmdq_xlate(struct mbox_controller *mbox,
static int cmdq_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- struct resource *res;
struct cmdq *cmdq;
int err, i;
struct gce_plat *plat_data;
@@ -538,8 +537,7 @@ static int cmdq_probe(struct platform_device *pdev)
if (!cmdq)
return -ENOMEM;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- cmdq->base = devm_ioremap_resource(dev, res);
+ cmdq->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(cmdq->base))
return PTR_ERR(cmdq->base);