aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-tipwmss.c
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@avionic-design.de>2013-01-21 05:09:16 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-22 14:41:57 -0500
commit6d4294d1634543853febc4287ecf02998fd234e1 (patch)
tree1614d14d3879557860ae9d78169e555f67c70170 /drivers/pwm/pwm-tipwmss.c
parent9e0c1fb29a7c257a31c321c2437617b6b4d66168 (diff)
pwm: Convert to devm_ioremap_resource()
Convert all uses of devm_request_and_ioremap() to the newly introduced devm_ioremap_resource() which provides more consistent error handling. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pwm/pwm-tipwmss.c')
-rw-r--r--drivers/pwm/pwm-tipwmss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-tipwmss.c b/drivers/pwm/pwm-tipwmss.c
index 3448a1c88590..17cbc59660ec 100644
--- a/drivers/pwm/pwm-tipwmss.c
+++ b/drivers/pwm/pwm-tipwmss.c
@@ -75,9 +75,9 @@ static int pwmss_probe(struct platform_device *pdev)
75 return -ENODEV; 75 return -ENODEV;
76 } 76 }
77 77
78 info->mmio_base = devm_request_and_ioremap(&pdev->dev, r); 78 info->mmio_base = devm_ioremap_resource(&pdev->dev, r);
79 if (!info->mmio_base) 79 if (IS_ERR(info->mmio_base))
80 return -EADDRNOTAVAIL; 80 return PTR_ERR(info->mmio_base);
81 81
82 pm_runtime_enable(&pdev->dev); 82 pm_runtime_enable(&pdev->dev);
83 pm_runtime_get_sync(&pdev->dev); 83 pm_runtime_get_sync(&pdev->dev);