[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240827161223.4152195-4-claudiu.beznea@tuxon.dev>
Date: Tue, 27 Aug 2024 19:12:23 +0300
From: Claudiu Beznea <claudiu.beznea@...on.dev>
To: manikandan.m@...rochip.com,
dharma.b@...rochip.com,
andrzej.hajda@...el.com,
neil.armstrong@...aro.org,
rfoss@...nel.org,
Laurent.pinchart@...asonboard.com,
jonas@...boo.se,
jernej.skrabec@...il.com,
maarten.lankhorst@...ux.intel.com,
mripard@...nel.org,
tzimmermann@...e.de,
airlied@...il.com,
daniel@...ll.ch,
hari.prasathge@...rochip.com
Cc: dri-devel@...ts.freedesktop.org,
linux-kernel@...r.kernel.org,
claudiu.beznea@...on.dev
Subject: [PATCH 3/3] drm/bridge: microchip-lvds: Use devm_platform_ioremap_resource()
The devm_platform_ioremap_resouce() does exactly what
devm_ioremap_resource() combined with platform_get_resouce() does.
Thus use it.
Signed-off-by: Claudiu Beznea <claudiu.beznea@...on.dev>
---
drivers/gpu/drm/bridge/microchip-lvds.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/bridge/microchip-lvds.c b/drivers/gpu/drm/bridge/microchip-lvds.c
index f04831106eea..85aff8c5aaf4 100644
--- a/drivers/gpu/drm/bridge/microchip-lvds.c
+++ b/drivers/gpu/drm/bridge/microchip-lvds.c
@@ -154,8 +154,7 @@ static int mchp_lvds_probe(struct platform_device *pdev)
lvds->dev = dev;
- lvds->regs = devm_ioremap_resource(lvds->dev,
- platform_get_resource(pdev, IORESOURCE_MEM, 0));
+ lvds->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(lvds->regs))
return PTR_ERR(lvds->regs);
--
2.39.2
Powered by blists - more mailing lists