]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
fbdev: wmt_ge_rops: use devm_platform_ioremap_resource()
authorAmin GATTOUT <amin.gattout@gmail.com>
Wed, 4 Mar 2026 17:10:42 +0000 (18:10 +0100)
committerHelge Deller <deller@gmx.de>
Mon, 9 Mar 2026 12:06:48 +0000 (13:06 +0100)
Replace the open-coded platform_get_resource() + ioremap() pair with
devm_platform_ioremap_resource(), which requests the memory region and
maps it in a single call, with automatic cleanup on device removal.

Also reset regbase to NULL in remove() so that the single-instance
guard in probe() works correctly if the device is re-probed.

Signed-off-by: Amin GATTOUT <amin.gattout@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/fbdev/wmt_ge_rops.c

index 2bd26bfb2b46bf056e5067320b903db67fecd84e..0cf78bcadfa6cc8caa2326e5f837f61f11e6cd56 100644 (file)
@@ -148,25 +148,15 @@ EXPORT_SYMBOL_GPL(wmt_ge_sync);
 
 static int wmt_ge_rops_probe(struct platform_device *pdev)
 {
-       struct resource *res;
-
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (res == NULL) {
-               dev_err(&pdev->dev, "no I/O memory resource defined\n");
-               return -ENODEV;
-       }
-
        /* Only one ROP engine is presently supported. */
        if (unlikely(regbase)) {
                WARN_ON(1);
                return -EBUSY;
        }
 
-       regbase = ioremap(res->start, resource_size(res));
-       if (regbase == NULL) {
-               dev_err(&pdev->dev, "failed to map I/O memory\n");
-               return -EBUSY;
-       }
+       regbase = devm_platform_ioremap_resource(pdev, 0);
+       if (IS_ERR(regbase))
+               return PTR_ERR(regbase);
 
        writel(1, regbase + GE_ENABLE_OFF);
        printk(KERN_INFO "Enabled support for WMT GE raster acceleration\n");
@@ -176,7 +166,7 @@ static int wmt_ge_rops_probe(struct platform_device *pdev)
 
 static void wmt_ge_rops_remove(struct platform_device *pdev)
 {
-       iounmap(regbase);
+       regbase = NULL;
 }
 
 static const struct of_device_id wmt_dt_ids[] = {