module_param: make bool parameters really bool (drivers & misc)
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / staging / media / lirc / lirc_zilog.c
index 0302d82..76ea4a8 100644 (file)
@@ -155,8 +155,8 @@ static struct mutex tx_data_lock;
 #define zilog_info(s, args...) printk(KERN_INFO KBUILD_MODNAME ": " s, ## args)
 
 /* module parameters */
-static int debug;      /* debug output */
-static int tx_only;    /* only handle the IR Tx function */
+static bool debug;     /* debug output */
+static bool tx_only;   /* only handle the IR Tx function */
 static int minor = -1; /* minor number */
 
 #define dprintk(fmt, args...)                                          \