diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 18:26:07 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 20:59:17 (GMT) |
commit | 79a5ee7882d0bc757f6861149934af7e89ef72fe (patch) | |
tree | d5e6fe52f098ee012a319c0ca304af9c4f9e5fdc /drivers/media/dvb-frontends | |
parent | 2fe15e201375ced4f2d1e9504f6ea19f6ffcae18 (diff) | |
download | linux-79a5ee7882d0bc757f6861149934af7e89ef72fe.tar.xz |
[media] tda10071: 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/dvb-frontends')
-rw-r--r-- | drivers/media/dvb-frontends/tda10071.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.c b/drivers/media/dvb-frontends/tda10071.c index 9619be5..4a19b85 100644 --- a/drivers/media/dvb-frontends/tda10071.c +++ b/drivers/media/dvb-frontends/tda10071.c @@ -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; |