diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2014-05-19 10:29:29 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-05-19 16:42:15 -0400 |
commit | 20e6f7f0437d6e1f2d459d5fc2ed1e242afcee16 (patch) | |
tree | 40b077f8da34db07d8008165f0513d373497cc40 /tools/perf/scripts/python/netdev-times.py | |
parent | 08232bf94949eabaabfcc2987025aed378aa13ae (diff) |
brcmsmac: make return of 0 explicit
Delete unnecessary local variable whose value is always 0 and that hides
the fact that the result is always 0.
A simplified version of the semantic patch that fixes this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@r exists@
local idexpression ret;
expression e;
position p;
@@
-ret = 0;
... when != ret = e
return
- ret
+ 0
;
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
[arend@broadcom.com: make brcms_b_detach() a void function]
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'tools/perf/scripts/python/netdev-times.py')
0 files changed, 0 insertions, 0 deletions