diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2013-01-21 05:09:16 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-22 14:41:57 -0500 |
commit | 6d4294d1634543853febc4287ecf02998fd234e1 (patch) | |
tree | 1614d14d3879557860ae9d78169e555f67c70170 /drivers/pwm/pwm-spear.c | |
parent | 9e0c1fb29a7c257a31c321c2437617b6b4d66168 (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-spear.c')
-rw-r--r-- | drivers/pwm/pwm-spear.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-spear.c b/drivers/pwm/pwm-spear.c index 83b21d9d5cf9..69a2d9eb34db 100644 --- a/drivers/pwm/pwm-spear.c +++ b/drivers/pwm/pwm-spear.c | |||
@@ -192,9 +192,9 @@ static int spear_pwm_probe(struct platform_device *pdev) | |||
192 | return -ENOMEM; | 192 | return -ENOMEM; |
193 | } | 193 | } |
194 | 194 | ||
195 | pc->mmio_base = devm_request_and_ioremap(&pdev->dev, r); | 195 | pc->mmio_base = devm_ioremap_resource(&pdev->dev, r); |
196 | if (!pc->mmio_base) | 196 | if (IS_ERR(pc->mmio_base)) |
197 | return -EADDRNOTAVAIL; | 197 | return PTR_ERR(pc->mmio_base); |
198 | 198 | ||
199 | pc->clk = devm_clk_get(&pdev->dev, NULL); | 199 | pc->clk = devm_clk_get(&pdev->dev, NULL); |
200 | if (IS_ERR(pc->clk)) | 200 | if (IS_ERR(pc->clk)) |