diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2014-12-29 18:04:37 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-01 01:19:00 +0100 |
commit | f12e77caf6c21588d6b24b5f1d8a6036f9ff9378 (patch) | |
tree | 651c84d729996157c41a89149961e6fb8061a7e0 /drivers/net/ethernet/allwinner | |
parent | net: Xilinx: fix error return code (diff) | |
download | linux-f12e77caf6c21588d6b24b5f1d8a6036f9ff9378.tar.xz linux-f12e77caf6c21588d6b24b5f1d8a6036f9ff9378.zip |
myri10ge: 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>
The patch also modifies the test of mgp->cmd to satisfy checkpatch.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/allwinner')
0 files changed, 0 insertions, 0 deletions