V4L/DVB (13977): [STV090x] Test for valid frequency before starting to tune
authorAndreas Regel <andreas.regel@gmx.de>
Tue, 5 Jan 2010 22:21:02 +0000 (19:21 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 26 Feb 2010 18:10:36 +0000 (15:10 -0300)
Signed-off-by: Andreas Regel <andreas.regel@gmx.de>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/stv090x.c

index e903334..3bdbce2 100644 (file)
@@ -3393,6 +3393,9 @@ static enum dvbfe_search stv090x_search(struct dvb_frontend *fe, struct dvb_fron
        struct stv090x_state *state = fe->demodulator_priv;
        struct dtv_frontend_properties *props = &fe->dtv_property_cache;
 
+       if (p->frequency == 0)
+               return DVBFE_ALGO_SEARCH_INVALID;
+
        state->delsys = props->delivery_system;
        state->frequency = p->frequency;
        state->srate = p->u.qpsk.symbol_rate;