aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/dvb-usb/af9005.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <m.chehab@samsung.com>2014-09-03 16:18:48 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-09-03 17:59:22 -0300
commit61f6a0569c6ce563accb8f415373756febe62752 (patch)
treef79698d5a3a1ac9646c01e701df4c9ee0b0efc7d /drivers/media/usb/dvb-usb/af9005.c
parent[media] lmedm04: use true/false for boolean vars (diff)
downloadlinux-dev-61f6a0569c6ce563accb8f415373756febe62752.tar.xz
linux-dev-61f6a0569c6ce563accb8f415373756febe62752.zip
[media] af9005: use true/false for boolean vars
Instead of using 0 or 1 for boolean, use the true/false defines. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb/af9005.c')
-rw-r--r--drivers/media/usb/dvb-usb/af9005.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/af9005.c b/drivers/media/usb/dvb-usb/af9005.c
index af176b6ce738..3f4361e48a32 100644
--- a/drivers/media/usb/dvb-usb/af9005.c
+++ b/drivers/media/usb/dvb-usb/af9005.c
@@ -30,7 +30,7 @@ MODULE_PARM_DESC(debug,
"set debugging level (1=info,xfer=2,rc=4,reg=8,i2c=16,fw=32 (or-able))."
DVB_USB_DEBUG_STATUS);
/* enable obnoxious led */
-bool dvb_usb_af9005_led = 1;
+bool dvb_usb_af9005_led = true;
module_param_named(led, dvb_usb_af9005_led, bool, 0644);
MODULE_PARM_DESC(led, "enable led (default: 1).");