summaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/omap_wdt.c
diff options
context:
space:
mode:
authorJulia Lawall2011-12-27 15:01:29 +0100
committerWim Van Sebroeck2012-01-27 09:53:28 +0100
commit52ea9a7d7946c03aa1f9eeb71adb0191402724dd (patch)
tree6f5baeadfa623f1425453487a4cc7000f74752e2 /drivers/watchdog/omap_wdt.c
parentwatchdog: imx2_wdt.c: use devm_request_and_ioremap (diff)
downloadkernel-qcow2-linux-52ea9a7d7946c03aa1f9eeb71adb0191402724dd.tar.gz
kernel-qcow2-linux-52ea9a7d7946c03aa1f9eeb71adb0191402724dd.tar.xz
kernel-qcow2-linux-52ea9a7d7946c03aa1f9eeb71adb0191402724dd.zip
watchdog: dw_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 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 'drivers/watchdog/omap_wdt.c')
0 files changed, 0 insertions, 0 deletions