[media] tda10071: use true/false for boolean vars
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Wed, 3 Sep 2014 18:26:07 +0000 (15:26 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Wed, 3 Sep 2014 20:59:17 +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/dvb-frontends/tda10071.c

index 9619be5d48271827b28052c080f01fc5631224b7..4a19b85995f17f47018732e8c82a67847c15e0d6 100644 (file)
@@ -1037,7 +1037,7 @@ static int tda10071_init(struct dvb_frontend *fe)
                        ret = -EFAULT;
                        goto error;
                } else {
-                       priv->warm = 1;
+                       priv->warm = true;
                }
 
                cmd.args[0] = CMD_GET_FW_VERSION;
This page took 0.104914 seconds and 5 git commands to generate.