diff options
Diffstat (limited to 'drivers/media/rc')
-rw-r--r-- | drivers/media/rc/lirc_dev.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/mceusb.c | 4 | ||||
-rw-r--r-- | drivers/media/rc/streamzap.c | 4 | ||||
-rw-r--r-- | drivers/media/rc/winbond-cir.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/rc/lirc_dev.c b/drivers/media/rc/lirc_dev.c index 27997a9ceb0d..ca12d3289bfe 100644 --- a/drivers/media/rc/lirc_dev.c +++ b/drivers/media/rc/lirc_dev.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <media/lirc.h> | 38 | #include <media/lirc.h> |
39 | #include <media/lirc_dev.h> | 39 | #include <media/lirc_dev.h> |
40 | 40 | ||
41 | static int debug; | 41 | static bool debug; |
42 | 42 | ||
43 | #define IRCTL_DEV_NAME "BaseRemoteCtl" | 43 | #define IRCTL_DEV_NAME "BaseRemoteCtl" |
44 | #define NOPLUG -1 | 44 | #define NOPLUG -1 |
diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index 20bb12d6fbbe..21105bf9594d 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc/mceusb.c | |||
@@ -156,9 +156,9 @@ | |||
156 | 156 | ||
157 | /* module parameters */ | 157 | /* module parameters */ |
158 | #ifdef CONFIG_USB_DEBUG | 158 | #ifdef CONFIG_USB_DEBUG |
159 | static int debug = 1; | 159 | static bool debug = 1; |
160 | #else | 160 | #else |
161 | static int debug; | 161 | static bool debug; |
162 | #endif | 162 | #endif |
163 | 163 | ||
164 | #define mce_dbg(dev, fmt, ...) \ | 164 | #define mce_dbg(dev, fmt, ...) \ |
diff --git a/drivers/media/rc/streamzap.c b/drivers/media/rc/streamzap.c index b1d29d09eeae..d6f4bfe09391 100644 --- a/drivers/media/rc/streamzap.c +++ b/drivers/media/rc/streamzap.c | |||
@@ -43,9 +43,9 @@ | |||
43 | #define DRIVER_DESC "Streamzap Remote Control driver" | 43 | #define DRIVER_DESC "Streamzap Remote Control driver" |
44 | 44 | ||
45 | #ifdef CONFIG_USB_DEBUG | 45 | #ifdef CONFIG_USB_DEBUG |
46 | static int debug = 1; | 46 | static bool debug = 1; |
47 | #else | 47 | #else |
48 | static int debug; | 48 | static bool debug; |
49 | #endif | 49 | #endif |
50 | 50 | ||
51 | #define USB_STREAMZAP_VENDOR_ID 0x0e9c | 51 | #define USB_STREAMZAP_VENDOR_ID 0x0e9c |
diff --git a/drivers/media/rc/winbond-cir.c b/drivers/media/rc/winbond-cir.c index e7f7a57bf684..b09c5fae489b 100644 --- a/drivers/media/rc/winbond-cir.c +++ b/drivers/media/rc/winbond-cir.c | |||
@@ -226,11 +226,11 @@ module_param(protocol, uint, 0444); | |||
226 | MODULE_PARM_DESC(protocol, "IR protocol to use for the power-on command " | 226 | MODULE_PARM_DESC(protocol, "IR protocol to use for the power-on command " |
227 | "(0 = RC5, 1 = NEC, 2 = RC6A, default)"); | 227 | "(0 = RC5, 1 = NEC, 2 = RC6A, default)"); |
228 | 228 | ||
229 | static int invert; /* default = 0 */ | 229 | static bool invert; /* default = 0 */ |
230 | module_param(invert, bool, 0444); | 230 | module_param(invert, bool, 0444); |
231 | MODULE_PARM_DESC(invert, "Invert the signal from the IR receiver"); | 231 | MODULE_PARM_DESC(invert, "Invert the signal from the IR receiver"); |
232 | 232 | ||
233 | static int txandrx; /* default = 0 */ | 233 | static bool txandrx; /* default = 0 */ |
234 | module_param(txandrx, bool, 0444); | 234 | module_param(txandrx, bool, 0444); |
235 | MODULE_PARM_DESC(invert, "Allow simultaneous TX and RX"); | 235 | MODULE_PARM_DESC(invert, "Allow simultaneous TX and RX"); |
236 | 236 | ||