]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit
[media] drivers/media/pci/ttpci/budget-av.c: fix error return code
authorPeter Senna Tschudin <peter.senna@gmail.com>
Thu, 6 Sep 2012 14:23:53 +0000 (11:23 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 22 Nov 2012 15:41:31 +0000 (13:41 -0200)
commitbc7c85e501d47a26d6659c94a1cdc02ec2dc4b3b
treeefd90038875abe4d12156550a6457548f73000e8
parentc4697d7f96f40cdc8f88bcdf4bf13d74ea11c4cc
[media] drivers/media/pci/ttpci/budget-av.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>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/pci/ttpci/budget-av.c