]> git.baikalelectronics.ru Git - kernel.git/commit
cw1200: Remove useless return variables
authorPeter Senna Tschudin <peter.senna@gmail.com>
Sat, 31 May 2014 16:12:26 +0000 (13:12 -0300)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 19 Jun 2014 19:49:12 +0000 (15:49 -0400)
commit05f68b9e4d22be24873cc7ca123c6a3bbb292167
tree5633f762fe4ba3f9f62d0c91c13cd25c5d9c376b
parent9f1401d1fe775cee578c3538afdb8bb1a9ba9dec
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>
drivers/net/wireless/cw1200/sta.c