[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200315140525.21780-6-zhengdejin5@gmail.com>
Date: Sun, 15 Mar 2020 22:05:25 +0800
From: Dejin Zheng <zhengdejin5@...il.com>
To: gregkh@...uxfoundation.org, rafael@...nel.org, hminas@...opsys.com,
mathias.nyman@...el.com, bgolaszewski@...libre.com, arnd@...db.de,
jeffrey.t.kirsher@...el.com, hdegoede@...hat.com,
treding@...dia.com, tglx@...utronix.de, tomas.winkler@...el.com,
suzuki.poulose@....com, sergei.shtylyov@...entembedded.com,
geert@...ux-m68k.org, linux-usb@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Dejin Zheng <zhengdejin5@...il.com>
Subject: [PATCH v3 5/5] driver core: platform: Reimplement devm_platform_ioremap_resource
Reimplement devm_platform_ioremap_resource() by calling
devm_platform_ioremap_and_get_resource() with res = NULL for
simplify the code.
Suggested-by: Geert Uytterhoeven <geert@...ux-m68k.org>
Signed-off-by: Dejin Zheng <zhengdejin5@...il.com>
---
v2 -> v3:
- add this patch to simplify the code by Geert's suggestion.
drivers/base/platform.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 9f6a78f79235..b83b789c8e34 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -95,10 +95,7 @@ EXPORT_SYMBOL_GPL(devm_platform_get_and_ioremap_resource);
void __iomem *devm_platform_ioremap_resource(struct platform_device *pdev,
unsigned int index)
{
- struct resource *res;
-
- res = platform_get_resource(pdev, IORESOURCE_MEM, index);
- return devm_ioremap_resource(&pdev->dev, res);
+ return devm_platform_get_and_ioremap_resource(pdev, index, NULL);
}
EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource);
--
2.25.0
Powered by blists - more mailing lists