aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-12-19 09:08:01 -0500
committerDavid S. Miller <davem@davemloft.net>2011-12-19 22:27:29 -0500
commiteb93992207dadb946a3b5cf4544957dc924a6f58 (patch)
tree8d840ea0e0e5eb3cf6207a2608d434475a9076b4 /drivers
parent3db1cd5c05f35fb43eb134df6f321de4e63141f2 (diff)
module_param: make bool parameters really bool (net & drivers/net)
module_param(bool) used to counter-intuitively take an int. In fddd5201 (mid-2009) we allowed bool or int/unsigned int using a messy trick. It's time to remove the int/unsigned int option. For this version it'll simply give a warning, but it'll break next kernel version. (Thanks to Joe Perches for suggesting coccinelle for 0/1 -> true/false). Cc: "David S. Miller" <davem@davemloft.net> Cc: netdev@vger.kernel.org Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/caif/caif_serial.c6
-rw-r--r--drivers/net/caif/caif_spi.c2
-rw-r--r--drivers/net/can/vcan.c2
-rw-r--r--drivers/net/ethernet/amd/amd8111e.h4
-rw-r--r--drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c2
-rw-r--r--drivers/net/ethernet/dlink/de600.c2
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/fw.c2
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/main.c2
-rw-r--r--drivers/net/ethernet/via/via-rhine.c5
-rw-r--r--drivers/net/irda/donauboe.c2
-rw-r--r--drivers/net/irda/smsc-ircc2.c2
-rw-r--r--drivers/net/usb/pegasus.c4
-rw-r--r--drivers/net/usb/smsc75xx.c2
-rw-r--r--drivers/net/usb/smsc95xx.c2
-rw-r--r--drivers/net/virtio_net.c2
-rw-r--r--drivers/net/wan/sbni.c2
-rw-r--r--drivers/net/wan/sealevel.c2
-rw-r--r--drivers/net/wireless/ath/ath5k/ath5k.h2
-rw-r--r--drivers/net/wireless/ath/ath5k/base.c6
-rw-r--r--drivers/net/wireless/ath/carl9170/main.c2
-rw-r--r--drivers/net/wireless/iwmc3200wifi/main.c4
-rw-r--r--drivers/net/wireless/mwl8k.c2
-rw-r--r--drivers/net/wireless/orinoco/main.c2
-rw-r--r--drivers/net/wireless/p54/main.c2
-rw-r--r--drivers/net/wireless/rt2x00/rt2500usb.c2
-rw-r--r--drivers/net/wireless/rt2x00/rt2800pci.c2
-rw-r--r--drivers/net/wireless/rt2x00/rt2800usb.c2
-rw-r--r--drivers/net/wireless/rt2x00/rt61pci.c2
-rw-r--r--drivers/net/wireless/rt2x00/rt73usb.c2
-rw-r--r--drivers/net/wireless/rtlwifi/wifi.h2
30 files changed, 39 insertions, 38 deletions
diff --git a/drivers/net/caif/caif_serial.c b/drivers/net/caif/caif_serial.c
index 9341a2d6efee..8a3054b84812 100644
--- a/drivers/net/caif/caif_serial.c
+++ b/drivers/net/caif/caif_serial.c
@@ -38,15 +38,15 @@ MODULE_ALIAS_LDISC(N_CAIF);
38/*This list is protected by the rtnl lock. */ 38/*This list is protected by the rtnl lock. */
39static LIST_HEAD(ser_list); 39static LIST_HEAD(ser_list);
40 40
41static int ser_loop; 41static bool ser_loop;
42module_param(ser_loop, bool, S_IRUGO); 42module_param(ser_loop, bool, S_IRUGO);
43MODULE_PARM_DESC(ser_loop, "Run in simulated loopback mode."); 43MODULE_PARM_DESC(ser_loop, "Run in simulated loopback mode.");
44 44
45static int ser_use_stx = 1; 45static bool ser_use_stx = true;
46module_param(ser_use_stx, bool, S_IRUGO); 46module_param(ser_use_stx, bool, S_IRUGO);
47MODULE_PARM_DESC(ser_use_stx, "STX enabled or not."); 47MODULE_PARM_DESC(ser_use_stx, "STX enabled or not.");
48 48
49static int ser_use_fcs = 1; 49static bool ser_use_fcs = true;
50 50
51module_param(ser_use_fcs, bool, S_IRUGO); 51module_param(ser_use_fcs, bool, S_IRUGO);
52MODULE_PARM_DESC(ser_use_fcs, "FCS enabled or not."); 52MODULE_PARM_DESC(ser_use_fcs, "FCS enabled or not.");
diff --git a/drivers/net/caif/caif_spi.c b/drivers/net/caif/caif_spi.c
index 761057b6f267..96391c36fa74 100644
--- a/drivers/net/caif/caif_spi.c
+++ b/drivers/net/caif/caif_spi.c
@@ -35,7 +35,7 @@ MODULE_DESCRIPTION("CAIF SPI driver");
35/* Returns the number of padding bytes for alignment. */ 35/* Returns the number of padding bytes for alignment. */
36#define PAD_POW2(x, pow) ((((x)&((pow)-1))==0) ? 0 : (((pow)-((x)&((pow)-1))))) 36#define PAD_POW2(x, pow) ((((x)&((pow)-1))==0) ? 0 : (((pow)-((x)&((pow)-1)))))
37 37
38static int spi_loop; 38static bool spi_loop;
39module_param(spi_loop, bool, S_IRUGO); 39module_param(spi_loop, bool, S_IRUGO);
40MODULE_PARM_DESC(spi_loop, "SPI running in loopback mode."); 40MODULE_PARM_DESC(spi_loop, "SPI running in loopback mode.");
41 41
diff --git a/drivers/net/can/vcan.c b/drivers/net/can/vcan.c
index f93e2d6fc88c..ea2d94285936 100644
--- a/drivers/net/can/vcan.c
+++ b/drivers/net/can/vcan.c
@@ -63,7 +63,7 @@ MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>");
63 * See Documentation/networking/can.txt for details. 63 * See Documentation/networking/can.txt for details.
64 */ 64 */
65 65
66static int echo; /* echo testing. Default: 0 (Off) */ 66static bool echo; /* echo testing. Default: 0 (Off) */
67module_param(echo, bool, S_IRUGO); 67module_param(echo, bool, S_IRUGO);
68MODULE_PARM_DESC(echo, "Echo sent frames (for testing). Default: 0 (Off)"); 68MODULE_PARM_DESC(echo, "Echo sent frames (for testing). Default: 0 (Off)");
69 69
diff --git a/drivers/net/ethernet/amd/amd8111e.h b/drivers/net/ethernet/amd/amd8111e.h
index 5bbb53a1999c..8baa3527ba74 100644
--- a/drivers/net/ethernet/amd/amd8111e.h
+++ b/drivers/net/ethernet/amd/amd8111e.h
@@ -807,8 +807,8 @@ typedef enum {
807 807
808static int card_idx; 808static int card_idx;
809static int speed_duplex[MAX_UNITS] = { 0, }; 809static int speed_duplex[MAX_UNITS] = { 0, };
810static int coalesce[MAX_UNITS] = {1,1,1,1,1,1,1,1}; 810static bool coalesce[MAX_UNITS] = { [ 0 ... MAX_UNITS-1] = true };
811static int dynamic_ipg[MAX_UNITS] = {0,0,0,0,0,0,0,0}; 811static bool dynamic_ipg[MAX_UNITS] = { [ 0 ... MAX_UNITS-1] = false };
812static unsigned int chip_version; 812static unsigned int chip_version;
813 813
814#endif /* _AMD8111E_H */ 814#endif /* _AMD8111E_H */
diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
index fccbe490c7f0..7b6b43d576d1 100644
--- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
+++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
@@ -243,7 +243,7 @@ module_param_array(intr_cnt, uint, NULL, 0644);
243MODULE_PARM_DESC(intr_cnt, 243MODULE_PARM_DESC(intr_cnt,
244 "thresholds 1..3 for queue interrupt packet counters"); 244 "thresholds 1..3 for queue interrupt packet counters");
245 245
246static int vf_acls; 246static bool vf_acls;
247 247
248#ifdef CONFIG_PCI_IOV 248#ifdef CONFIG_PCI_IOV
249module_param(vf_acls, bool, 0644); 249module_param(vf_acls, bool, 0644);
diff --git a/drivers/net/ethernet/dlink/de600.c b/drivers/net/ethernet/dlink/de600.c
index 23a65398d011..c24fab1e9cbe 100644
--- a/drivers/net/ethernet/dlink/de600.c
+++ b/drivers/net/ethernet/dlink/de600.c
@@ -59,7 +59,7 @@ static const char version[] = "de600.c: $Revision: 1.41-2.5 $, Bjorn Ekwall (bj
59 59
60#include "de600.h" 60#include "de600.h"
61 61
62static unsigned int check_lost = 1; 62static bool check_lost = true;
63module_param(check_lost, bool, 0); 63module_param(check_lost, bool, 0);
64MODULE_PARM_DESC(check_lost, "If set then check for unplugged de600"); 64MODULE_PARM_DESC(check_lost, "If set then check for unplugged de600");
65 65
diff --git a/drivers/net/ethernet/mellanox/mlx4/fw.c b/drivers/net/ethernet/mellanox/mlx4/fw.c
index abefcc86e2d1..e0639ebebe5e 100644
--- a/drivers/net/ethernet/mellanox/mlx4/fw.c
+++ b/drivers/net/ethernet/mellanox/mlx4/fw.c
@@ -49,7 +49,7 @@ enum {
49extern void __buggy_use_of_MLX4_GET(void); 49extern void __buggy_use_of_MLX4_GET(void);
50extern void __buggy_use_of_MLX4_PUT(void); 50extern void __buggy_use_of_MLX4_PUT(void);
51 51
52static int enable_qos; 52static bool enable_qos;
53module_param(enable_qos, bool, 0444); 53module_param(enable_qos, bool, 0444);
54MODULE_PARM_DESC(enable_qos, "Enable Quality of Service support in the HCA (default: off)"); 54MODULE_PARM_DESC(enable_qos, "Enable Quality of Service support in the HCA (default: off)");
55 55
diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c
index e984ded2249f..1209934844c4 100644
--- a/drivers/net/ethernet/mellanox/mlx4/main.c
+++ b/drivers/net/ethernet/mellanox/mlx4/main.c
@@ -121,7 +121,7 @@ MODULE_PARM_DESC(log_num_vlan, "Log2 max number of VLANs per ETH port (0-7)");
121/* Log2 max number of VLANs per ETH port (0-7) */ 121/* Log2 max number of VLANs per ETH port (0-7) */
122#define MLX4_LOG_NUM_VLANS 7 122#define MLX4_LOG_NUM_VLANS 7
123 123
124static int use_prio; 124static bool use_prio;
125module_param_named(use_prio, use_prio, bool, 0444); 125module_param_named(use_prio, use_prio, bool, 0444);
126MODULE_PARM_DESC(use_prio, "Enable steering by VLAN priority on ETH ports " 126MODULE_PARM_DESC(use_prio, "Enable steering by VLAN priority on ETH ports "
127 "(0/1, default 0)"); 127 "(0/1, default 0)");
diff --git a/drivers/net/ethernet/via/via-rhine.c b/drivers/net/ethernet/via/via-rhine.c
index bcdbdc72b558..5c4983b2870a 100644
--- a/drivers/net/ethernet/via/via-rhine.c
+++ b/drivers/net/ethernet/via/via-rhine.c
@@ -35,6 +35,7 @@
35#define DRV_VERSION "1.5.0" 35#define DRV_VERSION "1.5.0"
36#define DRV_RELDATE "2010-10-09" 36#define DRV_RELDATE "2010-10-09"
37 37
38#include <linux/types.h>
38 39
39/* A few user-configurable values. 40/* A few user-configurable values.
40 These may be modified when a driver module is loaded. */ 41 These may be modified when a driver module is loaded. */
@@ -55,7 +56,7 @@ static int rx_copybreak;
55 56
56/* Work-around for broken BIOSes: they are unable to get the chip back out of 57/* Work-around for broken BIOSes: they are unable to get the chip back out of
57 power state D3 so PXE booting fails. bootparam(7): via-rhine.avoid_D3=1 */ 58 power state D3 so PXE booting fails. bootparam(7): via-rhine.avoid_D3=1 */
58static int avoid_D3; 59static bool avoid_D3;
59 60
60/* 61/*
61 * In case you are looking for 'options[]' or 'full_duplex[]', they 62 * In case you are looking for 'options[]' or 'full_duplex[]', they
@@ -2322,7 +2323,7 @@ static int __init rhine_init(void)
2322#endif 2323#endif
2323 if (dmi_check_system(rhine_dmi_table)) { 2324 if (dmi_check_system(rhine_dmi_table)) {
2324 /* these BIOSes fail at PXE boot if chip is in D3 */ 2325 /* these BIOSes fail at PXE boot if chip is in D3 */
2325 avoid_D3 = 1; 2326 avoid_D3 = true;
2326 pr_warn("Broken BIOS detected, avoid_D3 enabled\n"); 2327 pr_warn("Broken BIOS detected, avoid_D3 enabled\n");
2327 } 2328 }
2328 else if (avoid_D3) 2329 else if (avoid_D3)
diff --git a/drivers/net/irda/donauboe.c b/drivers/net/irda/donauboe.c
index b45b2cc42804..64f403da101c 100644
--- a/drivers/net/irda/donauboe.c
+++ b/drivers/net/irda/donauboe.c
@@ -197,7 +197,7 @@ static char *driver_name = DRIVER_NAME;
197 197
198static int max_baud = 4000000; 198static int max_baud = 4000000;
199#ifdef USE_PROBE 199#ifdef USE_PROBE
200static int do_probe = 0; 200static bool do_probe = false;
201#endif 201#endif
202 202
203 203
diff --git a/drivers/net/irda/smsc-ircc2.c b/drivers/net/irda/smsc-ircc2.c
index 8b1c3484d271..6c95d4087b2d 100644
--- a/drivers/net/irda/smsc-ircc2.c
+++ b/drivers/net/irda/smsc-ircc2.c
@@ -79,7 +79,7 @@ MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
79MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver"); 79MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
80MODULE_LICENSE("GPL"); 80MODULE_LICENSE("GPL");
81 81
82static int smsc_nopnp = 1; 82static bool smsc_nopnp = true;
83module_param_named(nopnp, smsc_nopnp, bool, 0); 83module_param_named(nopnp, smsc_nopnp, bool, 0);
84MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings, defaults to true"); 84MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings, defaults to true");
85 85
diff --git a/drivers/net/usb/pegasus.c b/drivers/net/usb/pegasus.c
index 769f5090bda1..908b42710399 100644
--- a/drivers/net/usb/pegasus.c
+++ b/drivers/net/usb/pegasus.c
@@ -55,8 +55,8 @@ static const char driver_name[] = "pegasus";
55#define BMSR_MEDIA (BMSR_10HALF | BMSR_10FULL | BMSR_100HALF | \ 55#define BMSR_MEDIA (BMSR_10HALF | BMSR_10FULL | BMSR_100HALF | \
56 BMSR_100FULL | BMSR_ANEGCAPABLE) 56 BMSR_100FULL | BMSR_ANEGCAPABLE)
57 57
58static int loopback; 58static bool loopback;
59static int mii_mode; 59static bool mii_mode;
60static char *devid; 60static char *devid;
61 61
62static struct usb_eth_dev usb_dev_id[] = { 62static struct usb_eth_dev usb_dev_id[] = {
diff --git a/drivers/net/usb/smsc75xx.c b/drivers/net/usb/smsc75xx.c
index 7d62c39f65cf..0d5da82f0ff7 100644
--- a/drivers/net/usb/smsc75xx.c
+++ b/drivers/net/usb/smsc75xx.c
@@ -76,7 +76,7 @@ struct usb_context {
76 struct usbnet *dev; 76 struct usbnet *dev;
77}; 77};
78 78
79static int turbo_mode = true; 79static bool turbo_mode = true;
80module_param(turbo_mode, bool, 0644); 80module_param(turbo_mode, bool, 0644);
81MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction"); 81MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
82 82
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index 56f3894d701a..db217ad66f26 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -59,7 +59,7 @@ struct usb_context {
59 struct usbnet *dev; 59 struct usbnet *dev;
60}; 60};
61 61
62static int turbo_mode = true; 62static bool turbo_mode = true;
63module_param(turbo_mode, bool, 0644); 63module_param(turbo_mode, bool, 0644);
64MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction"); 64MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
65 65
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 609c51f90e6c..d1c3dce15dc2 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -30,7 +30,7 @@
30static int napi_weight = 128; 30static int napi_weight = 128;
31module_param(napi_weight, int, 0444); 31module_param(napi_weight, int, 0444);
32 32
33static int csum = 1, gso = 1; 33static bool csum = true, gso = true;
34module_param(csum, bool, 0444); 34module_param(csum, bool, 0444);
35module_param(gso, bool, 0444); 35module_param(gso, bool, 0444);
36 36
diff --git a/drivers/net/wan/sbni.c b/drivers/net/wan/sbni.c
index 783168cce077..d43f4efd3e07 100644
--- a/drivers/net/wan/sbni.c
+++ b/drivers/net/wan/sbni.c
@@ -155,7 +155,7 @@ static int emancipate( struct net_device * );
155static const char version[] = 155static const char version[] =
156 "Granch SBNI12 driver ver 5.0.1 Jun 22 2001 Denis I.Timofeev.\n"; 156 "Granch SBNI12 driver ver 5.0.1 Jun 22 2001 Denis I.Timofeev.\n";
157 157
158static int skip_pci_probe __initdata = 0; 158static bool skip_pci_probe __initdata = false;
159static int scandone __initdata = 0; 159static int scandone __initdata = 0;
160static int num __initdata = 0; 160static int num __initdata = 0;
161 161
diff --git a/drivers/net/wan/sealevel.c b/drivers/net/wan/sealevel.c
index 0b4fd05e1508..4f7748478984 100644
--- a/drivers/net/wan/sealevel.c
+++ b/drivers/net/wan/sealevel.c
@@ -362,7 +362,7 @@ static int io=0x238;
362static int txdma=1; 362static int txdma=1;
363static int rxdma=3; 363static int rxdma=3;
364static int irq=5; 364static int irq=5;
365static int slow=0; 365static bool slow=false;
366 366
367module_param(io, int, 0); 367module_param(io, int, 0);
368MODULE_PARM_DESC(io, "The I/O base of the Sealevel card"); 368MODULE_PARM_DESC(io, "The I/O base of the Sealevel card");
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h
index e564e585b221..c2b2518c2ecd 100644
--- a/drivers/net/wireless/ath/ath5k/ath5k.h
+++ b/drivers/net/wireless/ath/ath5k/ath5k.h
@@ -914,7 +914,7 @@ enum ath5k_dmasize {
914 */ 914 */
915 915
916#define AR5K_KEYCACHE_SIZE 8 916#define AR5K_KEYCACHE_SIZE 8
917extern int ath5k_modparam_nohwcrypt; 917extern bool ath5k_modparam_nohwcrypt;
918 918
919/***********************\ 919/***********************\
920 HW RELATED DEFINITIONS 920 HW RELATED DEFINITIONS
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c
index 178a4dd10316..d366dadcf86e 100644
--- a/drivers/net/wireless/ath/ath5k/base.c
+++ b/drivers/net/wireless/ath/ath5k/base.c
@@ -68,15 +68,15 @@
68#define CREATE_TRACE_POINTS 68#define CREATE_TRACE_POINTS
69#include "trace.h" 69#include "trace.h"
70 70
71int ath5k_modparam_nohwcrypt; 71bool ath5k_modparam_nohwcrypt;
72module_param_named(nohwcrypt, ath5k_modparam_nohwcrypt, bool, S_IRUGO); 72module_param_named(nohwcrypt, ath5k_modparam_nohwcrypt, bool, S_IRUGO);
73MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 73MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
74 74
75static int modparam_all_channels; 75static bool modparam_all_channels;
76module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO); 76module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO);
77MODULE_PARM_DESC(all_channels, "Expose all channels the device can use."); 77MODULE_PARM_DESC(all_channels, "Expose all channels the device can use.");
78 78
79static int modparam_fastchanswitch; 79static bool modparam_fastchanswitch;
80module_param_named(fastchanswitch, modparam_fastchanswitch, bool, S_IRUGO); 80module_param_named(fastchanswitch, modparam_fastchanswitch, bool, S_IRUGO);
81MODULE_PARM_DESC(fastchanswitch, "Enable fast channel switching for AR2413/AR5413 radios."); 81MODULE_PARM_DESC(fastchanswitch, "Enable fast channel switching for AR2413/AR5413 radios.");
82 82
diff --git a/drivers/net/wireless/ath/carl9170/main.c b/drivers/net/wireless/ath/carl9170/main.c
index 551859214ee9..db774212161b 100644
--- a/drivers/net/wireless/ath/carl9170/main.c
+++ b/drivers/net/wireless/ath/carl9170/main.c
@@ -48,7 +48,7 @@
48#include "carl9170.h" 48#include "carl9170.h"
49#include "cmd.h" 49#include "cmd.h"
50 50
51static int modparam_nohwcrypt; 51static bool modparam_nohwcrypt;
52module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 52module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
53MODULE_PARM_DESC(nohwcrypt, "Disable hardware crypto offload."); 53MODULE_PARM_DESC(nohwcrypt, "Disable hardware crypto offload.");
54 54
diff --git a/drivers/net/wireless/iwmc3200wifi/main.c b/drivers/net/wireless/iwmc3200wifi/main.c
index c3a1b5deb0d1..1f868b166d10 100644
--- a/drivers/net/wireless/iwmc3200wifi/main.c
+++ b/drivers/net/wireless/iwmc3200wifi/main.c
@@ -91,11 +91,11 @@ static struct iwm_conf def_iwm_conf = {
91 .mac_addr = {0x00, 0x02, 0xb3, 0x01, 0x02, 0x03}, 91 .mac_addr = {0x00, 0x02, 0xb3, 0x01, 0x02, 0x03},
92}; 92};
93 93
94static int modparam_reset; 94static bool modparam_reset;
95module_param_named(reset, modparam_reset, bool, 0644); 95module_param_named(reset, modparam_reset, bool, 0644);
96MODULE_PARM_DESC(reset, "reset on firmware errors (default 0 [not reset])"); 96MODULE_PARM_DESC(reset, "reset on firmware errors (default 0 [not reset])");
97 97
98static int modparam_wimax_enable = 1; 98static bool modparam_wimax_enable = true;
99module_param_named(wimax_enable, modparam_wimax_enable, bool, 0644); 99module_param_named(wimax_enable, modparam_wimax_enable, bool, 0644);
100MODULE_PARM_DESC(wimax_enable, "Enable wimax core (default 1 [wimax enabled])"); 100MODULE_PARM_DESC(wimax_enable, "Enable wimax core (default 1 [wimax enabled])");
101 101
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c
index a53fbfe4c286..e75d5c8d62cc 100644
--- a/drivers/net/wireless/mwl8k.c
+++ b/drivers/net/wireless/mwl8k.c
@@ -31,7 +31,7 @@
31#define MWL8K_VERSION "0.12" 31#define MWL8K_VERSION "0.12"
32 32
33/* Module parameters */ 33/* Module parameters */
34static unsigned ap_mode_default; 34static bool ap_mode_default;
35module_param(ap_mode_default, bool, 0); 35module_param(ap_mode_default, bool, 0);
36MODULE_PARM_DESC(ap_mode_default, 36MODULE_PARM_DESC(ap_mode_default,
37 "Set to 1 to make ap mode the default instead of sta mode"); 37 "Set to 1 to make ap mode the default instead of sta mode");
diff --git a/drivers/net/wireless/orinoco/main.c b/drivers/net/wireless/orinoco/main.c
index b52acc4b4086..9fb77d0319f5 100644
--- a/drivers/net/wireless/orinoco/main.c
+++ b/drivers/net/wireless/orinoco/main.c
@@ -121,7 +121,7 @@ module_param(orinoco_debug, int, 0644);
121MODULE_PARM_DESC(orinoco_debug, "Debug level"); 121MODULE_PARM_DESC(orinoco_debug, "Debug level");
122#endif 122#endif
123 123
124static int suppress_linkstatus; /* = 0 */ 124static bool suppress_linkstatus; /* = 0 */
125module_param(suppress_linkstatus, bool, 0644); 125module_param(suppress_linkstatus, bool, 0644);
126MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes"); 126MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
127 127
diff --git a/drivers/net/wireless/p54/main.c b/drivers/net/wireless/p54/main.c
index db4d9a02f264..af2ca1a9c7d3 100644
--- a/drivers/net/wireless/p54/main.c
+++ b/drivers/net/wireless/p54/main.c
@@ -27,7 +27,7 @@
27#include "p54.h" 27#include "p54.h"
28#include "lmac.h" 28#include "lmac.h"
29 29
30static int modparam_nohwcrypt; 30static bool modparam_nohwcrypt;
31module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 31module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
32MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 32MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
33MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>"); 33MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
diff --git a/drivers/net/wireless/rt2x00/rt2500usb.c b/drivers/net/wireless/rt2x00/rt2500usb.c
index 53c5f878f61d..de7d41f21a69 100644
--- a/drivers/net/wireless/rt2x00/rt2500usb.c
+++ b/drivers/net/wireless/rt2x00/rt2500usb.c
@@ -39,7 +39,7 @@
39/* 39/*
40 * Allow hardware encryption to be disabled. 40 * Allow hardware encryption to be disabled.
41 */ 41 */
42static int modparam_nohwcrypt; 42static bool modparam_nohwcrypt;
43module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 43module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
44MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 44MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
45 45
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c
index da48c8ac27bd..4941a1a23219 100644
--- a/drivers/net/wireless/rt2x00/rt2800pci.c
+++ b/drivers/net/wireless/rt2x00/rt2800pci.c
@@ -50,7 +50,7 @@
50/* 50/*
51 * Allow hardware encryption to be disabled. 51 * Allow hardware encryption to be disabled.
52 */ 52 */
53static int modparam_nohwcrypt = 0; 53static bool modparam_nohwcrypt = false;
54module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 54module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
55MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 55MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
56 56
diff --git a/drivers/net/wireless/rt2x00/rt2800usb.c b/drivers/net/wireless/rt2x00/rt2800usb.c
index 377876315b8d..b1df1a774948 100644
--- a/drivers/net/wireless/rt2x00/rt2800usb.c
+++ b/drivers/net/wireless/rt2x00/rt2800usb.c
@@ -45,7 +45,7 @@
45/* 45/*
46 * Allow hardware encryption to be disabled. 46 * Allow hardware encryption to be disabled.
47 */ 47 */
48static int modparam_nohwcrypt; 48static bool modparam_nohwcrypt;
49module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 49module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
50MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 50MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
51 51
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index bf55b4a311e3..e0c6d117429d 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -41,7 +41,7 @@
41/* 41/*
42 * Allow hardware encryption to be disabled. 42 * Allow hardware encryption to be disabled.
43 */ 43 */
44static int modparam_nohwcrypt = 0; 44static bool modparam_nohwcrypt = false;
45module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 45module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
46MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 46MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
47 47
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c
index cfb19dbb0a67..1c69c737086d 100644
--- a/drivers/net/wireless/rt2x00/rt73usb.c
+++ b/drivers/net/wireless/rt2x00/rt73usb.c
@@ -40,7 +40,7 @@
40/* 40/*
41 * Allow hardware encryption to be disabled. 41 * Allow hardware encryption to be disabled.
42 */ 42 */
43static int modparam_nohwcrypt; 43static bool modparam_nohwcrypt;
44module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); 44module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
45MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); 45MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
46 46
diff --git a/drivers/net/wireless/rtlwifi/wifi.h b/drivers/net/wireless/rtlwifi/wifi.h
index 085dccdbd1b6..9b7d60c0bf80 100644
--- a/drivers/net/wireless/rtlwifi/wifi.h
+++ b/drivers/net/wireless/rtlwifi/wifi.h
@@ -1488,7 +1488,7 @@ struct rtl_intf_ops {
1488 1488
1489struct rtl_mod_params { 1489struct rtl_mod_params {
1490 /* default: 0 = using hardware encryption */ 1490 /* default: 0 = using hardware encryption */
1491 int sw_crypto; 1491 bool sw_crypto;
1492 1492
1493 /* default: 0 = DBG_EMERG (0)*/ 1493 /* default: 0 = DBG_EMERG (0)*/
1494 int debug; 1494 int debug;