watchdog: imx2_wdt.c: use devm_request_and_ioremap
commit5d32d4868ad87a5be8571b22b3d732576504dfb0
authorJulia Lawall <julia@diku.dk>
Tue, 27 Dec 2011 14:01:28 +0000 (27 15:01 +0100)
committerWim Van Sebroeck <wim@iguana.be>
Fri, 27 Jan 2012 08:53:19 +0000 (27 09:53 +0100)
tree7908b55346143babcf235a27180e7e48fe594c99
parent74ea15d909b31158f9b63190a95b52bc05586d4b
watchdog: imx2_wdt.c: use devm_request_and_ioremap

Reimplement a call to devm_request_mem_region followed by a call to ioremap
or ioremap_nocache by a call to devm_request_and_ioremap.

The variable res_size is then no longer needed.

The semantic patch that makes this transformation is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@nm@
expression myname;
identifier i;
@@

struct platform_driver i = { .driver = { .name = myname } };

@@
expression dev,res,size;
expression nm.myname;
@@

-if (!devm_request_mem_region(dev, res->start, size,
-                              \(res->name\|dev_name(dev)\|myname\))) {
-   ...
-   return ...;
-}
... when != res->start
(
-devm_ioremap(dev,res->start,size)
+devm_request_and_ioremap(dev,res)
|
-devm_ioremap_nocache(dev,res->start,size)
+devm_request_and_ioremap(dev,res)
)
... when any
    when != res->start
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/imx2_wdt.c