[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>
This commit is contained in:
parent
2fe15e2013
commit
79a5ee7882
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue