[media] lgdt3306a: fix ERROR: do not use assignment in if condition
Just CodingStyle fix. Signed-off-by: Michael Ira Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
ebd9175ea4
commit
ae21e44777
|
@ -1600,7 +1600,8 @@ static int lgdt3306a_tune(struct dvb_frontend *fe, bool re_tune, unsigned int mo
|
|||
|
||||
if (re_tune) {
|
||||
state->current_frequency = -1; /* force re-tune */
|
||||
if ((ret = lgdt3306a_set_parameters(fe)) != 0)
|
||||
ret = lgdt3306a_set_parameters(fe);
|
||||
if (ret != 0)
|
||||
return ret;
|
||||
}
|
||||
*delay = 125;
|
||||
|
|
Loading…
Reference in New Issue