diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2015-04-05 15:06:28 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-07 22:21:55 +0300 |
commit | a3786a5ff7551d03029219f93306106d0a6bdf55 (patch) | |
tree | db21a1f76bc383975c6b01c6aa1a6c6c385d3905 /drivers/net/wan/cosa.c | |
parent | 27d751bfa41bdc022d1357479ff67c6902c02c8c (diff) | |
download | linux-a3786a5ff7551d03029219f93306106d0a6bdf55.tar.xz |
cosa: 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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/cosa.c')
-rw-r--r-- | drivers/net/wan/cosa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wan/cosa.c b/drivers/net/wan/cosa.c index 88d121d43c08..bcfa01add7cc 100644 --- a/drivers/net/wan/cosa.c +++ b/drivers/net/wan/cosa.c @@ -579,6 +579,7 @@ static int cosa_probe(int base, int irq, int dma) /* Register the network interface */ if (!(chan->netdev = alloc_hdlcdev(chan))) { pr_warn("%s: alloc_hdlcdev failed\n", chan->name); + err = -ENOMEM; goto err_hdlcdev; } dev_to_hdlc(chan->netdev)->attach = cosa_net_attach; |