RE: [PATCH 11/19] wireless: Change variable type to bool
From: Bing Zhao <hidden>
Date: 2013-09-23 20:06:15
Also in:
kernel-janitors, lkml, netdev
From: Bing Zhao <hidden>
Date: 2013-09-23 20:06:15
Also in:
kernel-janitors, lkml, netdev
Hi Peter, Thanks for your patch.
The variables cancel_scan_cmd, enable_data, hs_activate and valid are only assigned the values true and false. Change its type to bool. The simplified semantic patch that find this problem is as follows (http://coccinelle.lip6.fr/): @exists@ type T; identifier b; @@ - T + bool b = ...; ... when any b = \(true\|false\) Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Bing Zhao <redacted> Thanks, Bing
--- drivers/net/wireless/mwifiex/cmdevt.c | 2 +- drivers/net/wireless/mwifiex/join.c | 2 +- drivers/net/wireless/mwifiex/sta_cmd.c | 2 +- drivers/net/wireless/mwifiex/wmm.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-)