Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: winbond: Change variable type to bool

The variable Trigger is 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: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Peter Senna Tschudin and committed by
Greg Kroah-Hartman
ffb324aa f2be6354

+1 -1
+1 -1
drivers/staging/winbond/wb35tx.c
··· 180 180 { 181 181 struct hw_data *pHwData = &adapter->sHwData; 182 182 struct wb35_tx *pWb35Tx = &pHwData->Wb35Tx; 183 - unsigned char Trigger = false; 183 + bool Trigger = false; 184 184 185 185 if (pWb35Tx->TxTimer > TimeCount) 186 186 Trigger = true;