[linux-next] ARM: PXA: use devm_platform_ioremap_resource()
Commit Message
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(-)
--
2.15.2
@@ -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);