Commit 21af4356 authored by Yangtao Li's avatar Yangtao Li Committed by Thierry Reding

pwm: spear: Convert to devm_platform_ioremap_resource()

Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Reviewed-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
parent bde048eb
...@@ -174,7 +174,6 @@ static int spear_pwm_probe(struct platform_device *pdev) ...@@ -174,7 +174,6 @@ static int spear_pwm_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct spear_pwm_chip *pc; struct spear_pwm_chip *pc;
struct resource *r;
int ret; int ret;
u32 val; u32 val;
...@@ -182,8 +181,7 @@ static int spear_pwm_probe(struct platform_device *pdev) ...@@ -182,8 +181,7 @@ static int spear_pwm_probe(struct platform_device *pdev)
if (!pc) if (!pc)
return -ENOMEM; return -ENOMEM;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pc->mmio_base)) if (IS_ERR(pc->mmio_base))
return PTR_ERR(pc->mmio_base); return PTR_ERR(pc->mmio_base);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment