Commit 61f6a056 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] af9005: use true/false for boolean vars

Instead of using 0 or 1 for boolean, use the true/false
defines.
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 235d89ec
...@@ -30,7 +30,7 @@ MODULE_PARM_DESC(debug, ...@@ -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))." "set debugging level (1=info,xfer=2,rc=4,reg=8,i2c=16,fw=32 (or-able))."
DVB_USB_DEBUG_STATUS); DVB_USB_DEBUG_STATUS);
/* enable obnoxious led */ /* 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_param_named(led, dvb_usb_af9005_led, bool, 0644);
MODULE_PARM_DESC(led, "enable led (default: 1)."); MODULE_PARM_DESC(led, "enable led (default: 1).");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment