diff options
author | Julia Lawall <julia@diku.dk> | 2011-12-27 14:01:29 (GMT) |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-01-27 08:53:28 (GMT) |
commit | 52ea9a7d7946c03aa1f9eeb71adb0191402724dd (patch) | |
tree | 6f5baeadfa623f1425453487a4cc7000f74752e2 /drivers/scsi/in2000.h | |
parent | 5d32d4868ad87a5be8571b22b3d732576504dfb0 (diff) | |
download | linux-52ea9a7d7946c03aa1f9eeb71adb0191402724dd.tar.xz |
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/scsi/in2000.h')
0 files changed, 0 insertions, 0 deletions