OpenCloudOS-Kernel/drivers/net/wimax/i2400m
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
..
Kconfig
Makefile
control.c drivers/net: Add moduleparam.h to drivers as required. 2011-10-31 19:31:09 -04:00
debug-levels.h
debugfs.c drivers/net: Add export.h to files using EXPORT_SYMBOL/THIS_MODULE 2011-10-31 19:31:08 -04:00
driver.c Fix common misspellings 2011-03-31 11:26:23 -03:00
fw.c drivers/net: Add export.h to files using EXPORT_SYMBOL/THIS_MODULE 2011-10-31 19:31:08 -04:00
i2400m-sdio.h wimax: make functions local 2010-10-05 00:47:38 -07:00
i2400m-usb.h Fix common misspellings 2011-03-31 11:26:23 -03:00
i2400m.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
netdev.c drivers/net: Add export.h to files using EXPORT_SYMBOL/THIS_MODULE 2011-10-31 19:31:08 -04:00
op-rfkill.c Fix common misspellings 2011-03-31 11:26:23 -03:00
rx.c drivers/net: Add moduleparam.h to drivers as required. 2011-10-31 19:31:09 -04:00
sdio-debug-levels.h
sdio-fw.c
sdio-rx.c wimax: make functions local 2010-10-05 00:47:38 -07:00
sdio-tx.c wimax/i2400m: add the error recovery mechanism on TX path 2010-05-11 14:05:39 -07:00
sdio.c drivers/net: Add module.h to drivers who were implicitly using it 2011-10-31 19:31:07 -04:00
sysfs.c
tx.c net: fix assignment of 0/1 to bool variables. 2011-12-19 22:27:29 -05:00
usb-debug-levels.h
usb-fw.c Fix common misspellings 2011-03-31 11:26:23 -03:00
usb-notif.c drivers/net: Remove unnecessary returns from void function()s 2010-05-14 00:19:28 -07:00
usb-rx.c Fix common misspellings 2011-03-31 11:26:23 -03:00
usb-tx.c wimax/i2400m: remove an unused variable 2011-12-16 15:57:03 -05:00
usb.c drivers/net: Add module.h to drivers who were implicitly using it 2011-10-31 19:31:07 -04:00