Commit ac1bb694 authored by Jingoo Han's avatar Jingoo Han Committed by Wim Van Sebroeck

watchdog: mv64x60_wdt: use devm_ioremap()

Use devm_ioremap() to make cleanup paths simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 626d65aa
...@@ -276,7 +276,7 @@ static int mv64x60_wdt_probe(struct platform_device *dev) ...@@ -276,7 +276,7 @@ static int mv64x60_wdt_probe(struct platform_device *dev)
if (!r) if (!r)
return -ENODEV; return -ENODEV;
mv64x60_wdt_regs = ioremap(r->start, resource_size(r)); mv64x60_wdt_regs = devm_ioremap(&dev->dev, r->start, resource_size(r));
if (mv64x60_wdt_regs == NULL) if (mv64x60_wdt_regs == NULL)
return -ENOMEM; return -ENOMEM;
...@@ -293,8 +293,6 @@ static int mv64x60_wdt_remove(struct platform_device *dev) ...@@ -293,8 +293,6 @@ static int mv64x60_wdt_remove(struct platform_device *dev)
mv64x60_wdt_handler_disable(); mv64x60_wdt_handler_disable();
iounmap(mv64x60_wdt_regs);
return 0; return 0;
} }
......
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