diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-04 21:37:25 +0800 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2023-09-05 10:10:42 -0500 |
commit | 840f68226fcbca709ef2241490632f43e1c27fc4 (patch) | |
tree | 86a49e02697a872e3526591eb4febf4d62f9a5c3 /drivers | |
parent | f7fdb53cd2e1f39324042fd78c50f998c4ca95dc (diff) |
mailbox: rockchip: Use devm_platform_get_and_ioremap_resource()
Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mailbox/rockchip-mailbox.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mailbox/rockchip-mailbox.c b/drivers/mailbox/rockchip-mailbox.c index 116286ecc5a0..d15c490a5a46 100644 --- a/drivers/mailbox/rockchip-mailbox.c +++ b/drivers/mailbox/rockchip-mailbox.c @@ -194,11 +194,7 @@ static int rockchip_mbox_probe(struct platform_device *pdev) mb->mbox.ops = &rockchip_mbox_chan_ops; mb->mbox.txdone_irq = true; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - if (!res) - return -ENODEV; - - mb->mbox_base = devm_ioremap_resource(&pdev->dev, res); + mb->mbox_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res); if (IS_ERR(mb->mbox_base)) return PTR_ERR(mb->mbox_base); |