summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/bt8xx
diff options
context:
space:
mode:
authorManu Abraham <devnull@localhost>2005-06-28 09:49:07 +0000
committerManu Abraham <devnull@localhost>2005-06-28 09:49:07 +0000
commite5a22032fd65aac571e332f7793310ca45eedb62 (patch)
tree7e422a4e5472ea40727ff04bf6fa67ddf9b1e75f /linux/drivers/media/dvb/bt8xx
parent4d8798b86c25adeaa6732237c07be225ab161492 (diff)
downloadmediapointer-dvb-s2-e5a22032fd65aac571e332f7793310ca45eedb62.tar.gz
mediapointer-dvb-s2-e5a22032fd65aac571e332f7793310ca45eedb62.tar.bz2
Fix tuning failure for 200103A, 200103A failed to tune to low band
due to wrong tone setting on the 200103A Signed-off-by: Steffen Motzer <motzersn@t-link.de> Signed-off-by: Manu Abraham <manu@kromtek.com>
Diffstat (limited to 'linux/drivers/media/dvb/bt8xx')
-rw-r--r--linux/drivers/media/dvb/bt8xx/dst.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/dst.c b/linux/drivers/media/dvb/bt8xx/dst.c
index 4bec6355d..96a5502e5 100644
--- a/linux/drivers/media/dvb/bt8xx/dst.c
+++ b/linux/drivers/media/dvb/bt8xx/dst.c
@@ -1147,7 +1147,11 @@ static int dst_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone)
switch (tone) {
case SEC_TONE_OFF:
- state->tx_tuna[2] = 0xff;
+ if (state->type_flags & DST_TYPE_HAS_OBS_REGS)
+ state->tx_tuna[2] = 0x00;
+ else
+ state->tx_tuna[2] = 0xff;
+
break;
case SEC_TONE_ON: