diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2014-05-31 13:12:26 -0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-06-19 15:49:12 -0400 |
commit | 69253b6108102834c7cac826d4c34a0414b83a3e (patch) | |
tree | 5633f762fe4ba3f9f62d0c91c13cd25c5d9c376b /drivers/net/wireless/rtl818x | |
parent | 12f32370068d539bdc2fc9cf22c37dbdc2bae158 (diff) | |
download | lwn-69253b6108102834c7cac826d4c34a0414b83a3e.tar.gz lwn-69253b6108102834c7cac826d4c34a0414b83a3e.zip |
cw1200: Remove useless return variables
This patch remove variables that are initialized with a constant,
are never updated, and are only used as parameter of return.
Return the constant instead of using a variable.
Verified by compilation only.
The coccinelle script that find and fixes this issue is:
// <smpl>
@@
type T;
constant C;
identifier ret;
@@
- T ret = C;
... when != ret
when strict
return
- ret
+ C
;
// </smpl>
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rtl818x')
0 files changed, 0 insertions, 0 deletions