diff options
| author | Julia Lawall <[email protected]> | 2011-01-27 15:49:06 +0000 |
|---|---|---|
| committer | Tony Lindgren <[email protected]> | 2011-01-28 00:25:35 +0000 |
| commit | 0e6d8cad448bde3d846961bb43db15daae94562e (patch) | |
| tree | 51b1730d736c97a56d0fa23f7f61d2676ac4e620 /net/unix/af_unix.c | |
| parent | arm: omap2: mux: fix compile warning (diff) | |
| download | kernel-0e6d8cad448bde3d846961bb43db15daae94562e.tar.gz kernel-0e6d8cad448bde3d846961bb43db15daae94562e.zip | |
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 <[email protected]>
Acked-by: Jarkko Nikula <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
0 files changed, 0 insertions, 0 deletions
