Skip to content

Commit

Permalink
[PATCH] dvb: flexcop: DiSeqC fix
Browse files Browse the repository at this point in the history
Fixed DiSeqC switching, which was wrongly taking over from skystar2.c.  Thanks
to Joerg Riechardt for finding the bug and testing the Fix.

Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
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
Johannes Stezenbach authored and Linus Torvalds committed May 17, 2005
1 parent bdc7800 commit 958706c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/b2c2/flexcop-fe-tuner.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ static int flexcop_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone)

v.lnb_switch_freq_200.LNB_CTLPrescaler_sig = 1; /* divide by 2 */

v.lnb_switch_freq_200.LNB_CTLHighCount_sig =
v.lnb_switch_freq_200.LNB_CTLLowCount_sig = ax;
v.lnb_switch_freq_200.LNB_CTLHighCount_sig = ax;
v.lnb_switch_freq_200.LNB_CTLLowCount_sig = ax == 0 ? 0x1ff : ax;

return fc->write_ibi_reg(fc,lnb_switch_freq_200,v);
}
Expand Down

0 comments on commit 958706c

Please sign in to comment.