aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/caif/caif_serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/caif/caif_serial.c')
-rw-r--r--drivers/net/caif/caif_serial.c6
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. */
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.");