]> git.baikalelectronics.ru Git - kernel.git/commit
arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR
authorJulia Lawall <julia@diku.dk>
Thu, 27 Jan 2011 15:49:06 +0000 (15:49 +0000)
committerTony Lindgren <tony@atomide.com>
Fri, 28 Jan 2011 00:25:35 +0000 (16:25 -0800)
commit20305b488a6fdb379a6425e13fcd398a1b387270
tree51b1730d736c97a56d0fa23f7f61d2676ac4e620
parent3579ef41d42c09c696980d5708d9c76f2cedaf80
arch/arm/mach-omap2/dma.c: Convert IS_ERR result to PTR_ERR

This code elsewhere returns a negative constant to an indicate an error,
while IS_ERR returns the result of a >= operation.

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression x;
@@

 if (...) { ...
- return IS_ERR(x);
+ return PTR_ERR(x);
}
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Jarkko Nikula <jhnikula@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/dma.c