commit | 0c42bc25ed916d0fba1205cbdf668c38717fca77 | [log] [tgz] |
---|---|---|
author | Bhumika Goyal <bhumirks@gmail.com> | Sat Feb 13 11:48:02 2016 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Feb 14 16:34:08 2016 -0800 |
tree | 8fc4a2858b7e0568dcfa75464face06eefc99c26 | |
parent | 12f2a7b900f0fa8e2f466630c8bc76444aaf9f68 [diff] |
Staging: wlan-ng: Remove multiple assignments Remove multiple assignments by factorizing them. Made a coccinelle script to match cases: @@ identifier a,b; constant c; @@ -a=b=c; +a=c; +b=c; Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>