diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2012-09-04 15:05:03 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-09-23 20:46:08 +0400 |
commit | 9a888ba273b8bbd82a0b88cfd57c270f6eb8d724 (patch) | |
tree | 05cccee62bf1ec679b35f0df7018d420d7eee74e /drivers/media/pci | |
parent | a84b17e20f51dbc4f5c0aedb00d66f4f7d2ede8d (diff) | |
download | linux-9a888ba273b8bbd82a0b88cfd57c270f6eb8d724.tar.xz |
[media] drivers/media/platform/davinci/vpfe_capture.c: fix error return code
Convert a nonnegative error return code to a negative one, as returned
elsewhere in the function.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
(
if@p1 (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Cc: Prabhakar Lad <prabhakar.lad@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/pci')
0 files changed, 0 insertions, 0 deletions