diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-01-13 16:29:44 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:04:59 -0500 |
commit | 839c6c96d05894815b7af0dff22b710ce5a4373a (patch) | |
tree | a6f6559bd67481f3a7c883e04f2ccabd71794a0d /drivers/media | |
parent | 518d87399baee908b0353bc0ef7d41c3c46295ec (diff) |
V4L/DVB (7028): tda18271: test RF_CAL_OK to see if we need additional RF calibration
Test RF_CAL_OK to see if we need to perform the RF tracking filter
calibration after returning from standby.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/frontends/tda18271-fe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/tda18271-fe.c b/drivers/media/dvb/frontends/tda18271-fe.c index c8ab1fda1dea..8eb9a537970a 100644 --- a/drivers/media/dvb/frontends/tda18271-fe.c +++ b/drivers/media/dvb/frontends/tda18271-fe.c | |||
@@ -586,6 +586,11 @@ static int tda18271_calc_rf_filter_curve(struct dvb_frontend *fe) | |||
586 | static int tda18271_rf_cal_init(struct dvb_frontend *fe) | 586 | static int tda18271_rf_cal_init(struct dvb_frontend *fe) |
587 | { | 587 | { |
588 | struct tda18271_priv *priv = fe->tuner_priv; | 588 | struct tda18271_priv *priv = fe->tuner_priv; |
589 | unsigned char *regs = priv->tda18271_regs; | ||
590 | |||
591 | /* test RF_CAL_OK to see if we need init */ | ||
592 | if ((regs[R_EP1] & 0x10) == 0) | ||
593 | priv->cal_initialized = false; | ||
589 | 594 | ||
590 | if (priv->cal_initialized) | 595 | if (priv->cal_initialized) |
591 | return 0; | 596 | return 0; |