android_kernel_motorola_sm6225/drivers/net/wireless/b43legacy
Rusty Russell 3db1cd5c05 net: fix assignment of 0/1 to bool variables.
DaveM said:
   Please, this kind of stuff rots forever and not using bool properly
   drives me crazy.

Joe Perches <joe@perches.com> gave me the spatch script:

	@@
	bool b;
	@@
	-b = 0
	+b = false
	@@
	bool b;
	@@
	-b = 1
	+b = true

I merely installed coccinelle, read the documentation and took credit.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
2011-12-19 22:27:29 -05:00
..
b43legacy.h treewide: use __printf not __attribute__((format(printf,...))) 2011-10-31 17:30:54 -07:00
debugfs.c Update my e-mail address 2011-07-07 15:18:01 +02:00
debugfs.h
dma.c net: fix assignment of 0/1 to bool variables. 2011-12-19 22:27:29 -05:00
dma.h b43legacy: remove 64-bit DMA support 2011-08-08 16:04:08 -04:00
ilt.c Update my e-mail address 2011-07-07 15:18:01 +02:00
ilt.h
Kconfig
leds.c net: fix assignment of 0/1 to bool variables. 2011-12-19 22:27:29 -05:00
leds.h
main.c net: fix assignment of 0/1 to bool variables. 2011-12-19 22:27:29 -05:00
main.h Update my e-mail address 2011-07-07 15:18:01 +02:00
Makefile
phy.c Update my e-mail address 2011-07-07 15:18:01 +02:00
phy.h Update my e-mail address 2011-07-07 15:18:01 +02:00
pio.c Update my e-mail address 2011-07-07 15:18:01 +02:00
pio.h
radio.c net: fix assignment of 0/1 to bool variables. 2011-12-19 22:27:29 -05:00
radio.h Update my e-mail address 2011-07-07 15:18:01 +02:00
rfkill.c Update my e-mail address 2011-07-07 15:18:01 +02:00
rfkill.h
sysfs.c Update my e-mail address 2011-07-07 15:18:01 +02:00
sysfs.h
xmit.c Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2011-07-25 13:56:39 -07:00
xmit.h