[media] lmedm04: use true/false for boolean vars
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Wed, 3 Sep 2014 19:18:17 +0000 (16:18 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Wed, 3 Sep 2014 20:59:22 +0000 (17:59 -0300)
Instead of using 0 or 1 for boolean, use the true/false
defines.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/usb/dvb-usb-v2/lmedm04.c

index e332af7..9f2c545 100644 (file)
@@ -1252,7 +1252,7 @@ static int lme2510_get_stream_config(struct dvb_frontend *fe, u8 *ts_type,
 
        /* Turn PID filter on the fly by module option */
        if (pid_filter == 2) {
-               adap->pid_filtering  = 1;
+               adap->pid_filtering  = true;
                adap->max_feed_count = 15;
        }