diff options
| author | Julia Lawall <julia.lawall@lip6.fr> | 2015-04-05 08:06:28 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2015-04-07 15:21:55 -0400 |
| commit | a3786a5ff7551d03029219f93306106d0a6bdf55 (patch) | |
| tree | db21a1f76bc383975c6b01c6aa1a6c6c385d3905 /drivers/net/wan | |
| parent | 27d751bfa41bdc022d1357479ff67c6902c02c8c (diff) | |
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')
| -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) | |||
| 579 | /* Register the network interface */ | 579 | /* Register the network interface */ |
| 580 | if (!(chan->netdev = alloc_hdlcdev(chan))) { | 580 | if (!(chan->netdev = alloc_hdlcdev(chan))) { |
| 581 | pr_warn("%s: alloc_hdlcdev failed\n", chan->name); | 581 | pr_warn("%s: alloc_hdlcdev failed\n", chan->name); |
| 582 | err = -ENOMEM; | ||
| 582 | goto err_hdlcdev; | 583 | goto err_hdlcdev; |
| 583 | } | 584 | } |
| 584 | dev_to_hdlc(chan->netdev)->attach = cosa_net_attach; | 585 | dev_to_hdlc(chan->netdev)->attach = cosa_net_attach; |
