diff options
author | Julia Lawall <julia@diku.dk> | 2011-02-13 15:12:11 +0300 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-05-11 02:43:30 +0400 |
commit | 0e8ede5351b53610363215f750e576ca1db1d0cd (patch) | |
tree | 632f1486569770166223247869bc821521cf8b80 /drivers/md | |
parent | 83d74e036b94ffbf871667eede5ef02993709452 (diff) | |
download | linux-0e8ede5351b53610363215f750e576ca1db1d0cd.tar.xz |
x86/PCI: Convert release_resource to release_region/release_mem_region
Request_region should be used with release_region, not release_resource.
The local variables region and region2 are dropped and the calls to
release_resource are replaced with calls to release_region, using the first
two arguments of the corresponding calls to request_region.
The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression x,E;
@@
(
*x = request_region(...)
|
*x = request_mem_region(...)
)
... when != release_region(x)
when != x = E
* release_resource(x);
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/md')
0 files changed, 0 insertions, 0 deletions