summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2009-08-09 11:42:32 +0200
committerRalf Baechle <ralf@linux-mips.org>2010-08-05 13:25:38 +0100
commit26692f53ef550f7b8dc43fc5171c6187094632a8 (patch)
tree88ea9abcb60bc389ec940d413a0f34a9f85eb0b1 /arch/mips
parent9fe6206f400646a2322096b56c59891d530e8d51 (diff)
downloadlinux-26692f53ef550f7b8dc43fc5171c6187094632a8.tar.bz2
VIDEO: Correct use of request_region/request_mem_region
request_region should be used with release_region, not request_mem_region. Geert Uytterhoeven pointed out that in the case of drivers/video/gbefb.c, the problem is actually the other way around; request_mem_region should be used instead of request_region. The semantic patch that finds/fixes this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r1@ expression start; @@ request_region(start,...) @b1@ expression r1.start; @@ request_mem_region(start,...) @depends on !b1@ expression r1.start; expression E; @@ - release_mem_region + release_region (start,E) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
0 files changed, 0 insertions, 0 deletions