]> bbs.cooldavid.org Git - net-next-2.6.git/commit
V4L/DVB: drivers/media/video: Use available error codes
authorJulia Lawall <julia@diku.dk>
Mon, 16 Aug 2010 16:27:47 +0000 (13:27 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 21 Oct 2010 03:04:48 +0000 (01:04 -0200)
commit3053814c1cbedb9d2802240f414588009706c74d
treedb390eb99757060daa707fe876b74f0af1971c3a
parentf27709792912d30a4f1f5ae98fd23aab2d4483b4
V4L/DVB: drivers/media/video: Use available error codes

Error codes are stored in rc, but the return value is always 0.  Return rc
instead.

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

// <smpl>
@r@
local idexpression x;
constant C;
@@

if (...) { ...
  x = -C
  ... when != x
(
  return <+...x...+>;
|
  return NULL;
|
  return;
|
* return ...;
)
}
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/zr364xx.c