diff options
author | Andrew de Quincy <devnull@localhost> | 2004-08-26 22:42:23 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2004-08-26 22:42:23 +0000 |
commit | 82327d09f5c8b054364d159d25272e2349a466d8 (patch) | |
tree | 1b0b8f0ec2214f2bdd2dff37d0dca3b5b10f5e19 | |
parent | c96f7f33f594e8de4f24c4992493be1697e87721 (diff) | |
download | mediapointer-dvb-s2-82327d09f5c8b054364d159d25272e2349a466d8.tar.gz mediapointer-dvb-s2-82327d09f5c8b054364d159d25272e2349a466d8.tar.bz2 |
Added comment about forcing AUTO on 'cos of TDA10045 problems
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index 064175cb3..a5672b35b 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -771,7 +771,9 @@ static int tda1004x_set_fe(struct i2c_adapter *i2c, if ((tmp = tda1004x_set_frequency(i2c, tda_state, fe_params)) < 0) return tmp; - // hardcoded to use auto as much as possible + // Hardcoded to use auto as much as possible + // The TDA10045 is very unreliable if AUTO mode is _not_ used. I have not + // yet tested the TDA10046 to see if this issue has been fixed fe_params->u.ofdm.code_rate_HP = FEC_AUTO; fe_params->u.ofdm.guard_interval = GUARD_INTERVAL_AUTO; fe_params->u.ofdm.transmission_mode = TRANSMISSION_MODE_AUTO; |