summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2011-12-27 14:01:28 (GMT)
committerWim Van Sebroeck <wim@iguana.be>2012-01-27 08:53:19 (GMT)
commit5d32d4868ad87a5be8571b22b3d732576504dfb0 (patch)
tree7908b55346143babcf235a27180e7e48fe594c99 /kernel
parent74ea15d909b31158f9b63190a95b52bc05586d4b (diff)
downloadlinux-5d32d4868ad87a5be8571b22b3d732576504dfb0.tar.xz
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>
Diffstat (limited to 'kernel')
0 files changed, 0 insertions, 0 deletions