diff options
| author | Mauro Carvalho Chehab <[email protected]> | 2014-09-03 15:26:07 -0300 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2014-09-03 17:59:17 -0300 |
| commit | 79a5ee7882d0bc757f6861149934af7e89ef72fe (patch) | |
| tree | d5e6fe52f098ee012a319c0ca304af9c4f9e5fdc | |
| parent | 2fe15e201375ced4f2d1e9504f6ea19f6ffcae18 (diff) | |
[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 <[email protected]>
| -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 9619be5d4827..4a19b85995f1 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; |