Linux EDAC development
 help / color / mirror / Atom feed
* [PATCH] EDAC/ti: use devm_platform_ioremap_resource to simplify probe
@ 2026-07-29  1:21 Rosen Penev
  0 siblings, 0 replies; only message in thread
From: Rosen Penev @ 2026-07-29  1:21 UTC (permalink / raw)
  To: linux-edac; +Cc: Tero Kristo, Borislav Petkov, Tony Luck, open list

Replace the open-coded platform_get_resource() +
devm_ioremap_resource() pair with the single helper
devm_platform_ioremap_resource(), dropping the now-unused
struct resource pointer.

Assisted-by: opencode:hy3-free
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
 drivers/edac/ti_edac.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/edac/ti_edac.c b/drivers/edac/ti_edac.c
index 39cc2ef9cac4..aac6bd6b0572 100644
--- a/drivers/edac/ti_edac.c
+++ b/drivers/edac/ti_edac.c
@@ -231,7 +231,6 @@ static int ti_edac_probe(struct platform_device *pdev)
 {
 	int error_irq = 0, ret = -ENODEV;
 	struct device *dev = &pdev->dev;
-	struct resource *res;
 	void __iomem *reg;
 	struct mem_ctl_info *mci;
 	struct edac_mc_layer layers[1];
@@ -243,8 +242,7 @@ static int ti_edac_probe(struct platform_device *pdev)
 	if (!id)
 		return -ENODEV;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	reg = devm_ioremap_resource(dev, res);
+	reg = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(reg))
 		return PTR_ERR(reg);
 
-- 
2.55.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-29  1:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-29  1:21 [PATCH] EDAC/ti: use devm_platform_ioremap_resource to simplify probe Rosen Penev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox