usb: dwc3: keystone: fix error return code
authorJulia Lawall <Julia.Lawall@lip6.fr>
Thu, 20 Nov 2014 17:33:58 +0000 (18:33 +0100)
committerFelipe Balbi <balbi@ti.com>
Thu, 20 Nov 2014 19:35:46 +0000 (13:35 -0600)
commit62c606978aa028260f88d0dcb9834bbb7a42b048
tree1e752e46561faaa29474b2ffed5559c1d39ee5d0
parenta4722fd3f2d3590af5200890b61dbbdf87480abb
usb: dwc3: keystone: fix error return code

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/dwc3-keystone.c