public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux-next] ARM: PXA: use devm_platform_ioremap_resource()
@ 2022-11-30  7:37 zhang.songyi
  0 siblings, 0 replies; only message in thread
From: zhang.songyi @ 2022-11-30  7:37 UTC (permalink / raw)
  To: daniel
  Cc: haojian.zhuang, robert.jarzmik, linux, linux-arm-kernel,
	linux-kernel, zhang.songyi

From: zhang songyi <zhang.songyi@zte.com.cn>

Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately

Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>
---
 arch/arm/mach-pxa/pxa_cplds_irqs.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/arm/mach-pxa/pxa_cplds_irqs.c b/arch/arm/mach-pxa/pxa_cplds_irqs.c
index eda5a47d7fbb..e94b340589ed 100644
--- a/arch/arm/mach-pxa/pxa_cplds_irqs.c
+++ b/arch/arm/mach-pxa/pxa_cplds_irqs.c
@@ -104,7 +104,6 @@ static int cplds_resume(struct platform_device *pdev)

 static int cplds_probe(struct platform_device *pdev)
 {
-       struct resource *res;
        struct cplds *fpga;
        int ret;
        int base_irq;
@@ -127,8 +126,7 @@ static int cplds_probe(struct platform_device *pdev)
                        return ret;
        }

-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       fpga->base = devm_ioremap_resource(&pdev->dev, res);
+       fpga->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(fpga->base))
                return PTR_ERR(fpga->base);

--
2.15.2

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

only message in thread, other threads:[~2022-11-30  7:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-30  7:37 [PATCH linux-next] ARM: PXA: use devm_platform_ioremap_resource() zhang.songyi

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