diff mbox series

[-next] can: m_can: use devm_platform_ioremap_resource_byname

Message ID 20210603073441.2983497-1-yangyingliang@huawei.com
State New
Headers show
Series [-next] can: m_can: use devm_platform_ioremap_resource_byname | expand

Commit Message

Yang Yingliang June 3, 2021, 7:34 a.m. UTC
Use the devm_platform_ioremap_resource_byname() helper instead of
calling platform_get_resource_byname() and devm_ioremap_resource()
separately.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/net/can/m_can/m_can_platform.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Marc Kleine-Budde June 16, 2021, 10:39 a.m. UTC | #1
On 03.06.2021 15:34:41, Yang Yingliang wrote:
> Use the devm_platform_ioremap_resource_byname() helper instead of

> calling platform_get_resource_byname() and devm_ioremap_resource()

> separately.

> 

> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>


Applied to linux-can-next/testing.

Tnx,
Marc

-- 
Pengutronix e.K.                 | Marc Kleine-Budde           |
Embedded Linux                   | https://www.pengutronix.de  |
Vertretung West/Dortmund         | Phone: +49-231-2826-924     |
Amtsgericht Hildesheim, HRA 2686 | Fax:   +49-5121-206917-5555 |
diff mbox series

Patch

diff --git a/drivers/net/can/m_can/m_can_platform.c b/drivers/net/can/m_can/m_can_platform.c
index 599de0e08cd7..9f8f69aec993 100644
--- a/drivers/net/can/m_can/m_can_platform.c
+++ b/drivers/net/can/m_can/m_can_platform.c
@@ -80,8 +80,7 @@  static int m_can_plat_probe(struct platform_device *pdev)
 	if (ret)
 		goto probe_fail;
 
-	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "m_can");
-	addr = devm_ioremap_resource(&pdev->dev, res);
+	addr = devm_platform_ioremap_resource_byname(pdev, "m_can");
 	irq = platform_get_irq_byname(pdev, "int0");
 	if (IS_ERR(addr) || irq < 0) {
 		ret = -EINVAL;