diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2012-09-06 12:24:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-06 09:20:32 -0300 |
commit | ab99cb18ae5cbb93f650ba7bc305aae6155da880 (patch) | |
tree | 901e1308f5a558795d92f7bec8ff6a66517b3b73 /tools | |
parent | 58dec65d714f9f2872fdfe8f6a1f36027431de95 (diff) | |
download | linux-ab99cb18ae5cbb93f650ba7bc305aae6155da880.tar.bz2 |
[media] drivers/media/platform/soc_camera/soc_camera.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>
[g.liakhovetski@gmx.de: follow the soc_camera.c style: check "ret < 0"]
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'tools')
0 files changed, 0 insertions, 0 deletions