Commit e7809a07 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

V4L/DVB (7433): tda18271: fix comparison bug in tda18271_powerscan

Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent c0dc0c11
......@@ -422,7 +422,7 @@ static int tda18271_powerscan(struct dvb_frontend *fe,
count += 200;
if (count < count_limit)
if (count <= count_limit)
continue;
if (sgn <= 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment