aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/ath79_wdt.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-03-04 00:06:41 -0500
committerWim Van Sebroeck <wim@iguana.be>2013-05-09 02:12:00 -0400
commit6330c7070be6783b82025d2bc259db8413c00182 (patch)
tree32ef8ae643db47f6c8176b15ae22094b58fefa8c /drivers/watchdog/ath79_wdt.c
parente0fd9affeb64088eff407dfc98bbd3a5c17ea479 (diff)
watchdog: Convert to devm_ioremap_resource()
Use the newly introduced devm_ioremap_resource() instead of devm_request_and_ioremap() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages; so all explicit error messages can be removed from the failure code paths. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de> Cc: Gabor Juhos <juhosg@openwrt.org> Cc: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/ath79_wdt.c')
-rw-r--r--drivers/watchdog/ath79_wdt.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/watchdog/ath79_wdt.c b/drivers/watchdog/ath79_wdt.c
index 898799074a13..d184c48a0482 100644
--- a/drivers/watchdog/ath79_wdt.c
+++ b/drivers/watchdog/ath79_wdt.c
@@ -253,11 +253,9 @@ static int ath79_wdt_probe(struct platform_device *pdev)
253 return -EINVAL; 253 return -EINVAL;
254 } 254 }
255 255
256 wdt_base = devm_request_and_ioremap(&pdev->dev, res); 256 wdt_base = devm_ioremap_resource(&pdev->dev, res);
257 if (!wdt_base) { 257 if (IS_ERR(wdt_base))
258 dev_err(&pdev->dev, "unable to remap memory region\n"); 258 return PTR_ERR(wdt_base);
259 return -ENOMEM;
260 }
261 259
262 wdt_clk = devm_clk_get(&pdev->dev, "wdt"); 260 wdt_clk = devm_clk_get(&pdev->dev, "wdt");
263 if (IS_ERR(wdt_clk)) 261 if (IS_ERR(wdt_clk))