Skip to content

Commit

Permalink
[PATCH] dvb: dst: fix tuning problem
Browse files Browse the repository at this point in the history
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@tlink.de>
Signed-off-by: Manu Abraham <manu@kromtek.com>
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Steffen Motzer authored and Linus Torvalds committed Jul 8, 2005
1 parent 63b5c1c commit 4b2bd30
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/media/dvb/bt8xx/dst.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4b2bd30

Please sign in to comment.