diff options
Diffstat (limited to 'drivers/net/caif/caif_serial.c')
-rw-r--r-- | drivers/net/caif/caif_serial.c | 6 |
1 files changed, 3 insertions, 3 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. */ |
39 | static LIST_HEAD(ser_list); | 39 | static LIST_HEAD(ser_list); |
40 | 40 | ||
41 | static int ser_loop; | 41 | static bool ser_loop; |
42 | module_param(ser_loop, bool, S_IRUGO); | 42 | module_param(ser_loop, bool, S_IRUGO); |
43 | MODULE_PARM_DESC(ser_loop, "Run in simulated loopback mode."); | 43 | MODULE_PARM_DESC(ser_loop, "Run in simulated loopback mode."); |
44 | 44 | ||
45 | static int ser_use_stx = 1; | 45 | static bool ser_use_stx = true; |
46 | module_param(ser_use_stx, bool, S_IRUGO); | 46 | module_param(ser_use_stx, bool, S_IRUGO); |
47 | MODULE_PARM_DESC(ser_use_stx, "STX enabled or not."); | 47 | MODULE_PARM_DESC(ser_use_stx, "STX enabled or not."); |
48 | 48 | ||
49 | static int ser_use_fcs = 1; | 49 | static bool ser_use_fcs = true; |
50 | 50 | ||
51 | module_param(ser_use_fcs, bool, S_IRUGO); | 51 | module_param(ser_use_fcs, bool, S_IRUGO); |
52 | MODULE_PARM_DESC(ser_use_fcs, "FCS enabled or not."); | 52 | MODULE_PARM_DESC(ser_use_fcs, "FCS enabled or not."); |