diff options
author | Johannes Stezenbach <js@linuxtv.org> | 2005-05-17 00:54:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-17 10:59:26 -0400 |
commit | 958706c12d7e1b21ac46a8b3bc7eabb157b20bb7 (patch) | |
tree | 4bc64aab4f76449c821ad54406d806e2edc1a1cc /drivers/media/dvb | |
parent | bdc7800122da0b6b008aa9bdafc01e32b6a4576a (diff) |
[PATCH] dvb: flexcop: DiSeqC fix
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>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/b2c2/flexcop-fe-tuner.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/b2c2/flexcop-fe-tuner.c b/drivers/media/dvb/b2c2/flexcop-fe-tuner.c index b3dd16fb5bbd..71be400e9aeb 100644 --- a/drivers/media/dvb/b2c2/flexcop-fe-tuner.c +++ b/drivers/media/dvb/b2c2/flexcop-fe-tuner.c | |||
@@ -79,8 +79,8 @@ static int flexcop_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone) | |||
79 | 79 | ||
80 | v.lnb_switch_freq_200.LNB_CTLPrescaler_sig = 1; /* divide by 2 */ | 80 | v.lnb_switch_freq_200.LNB_CTLPrescaler_sig = 1; /* divide by 2 */ |
81 | 81 | ||
82 | v.lnb_switch_freq_200.LNB_CTLHighCount_sig = | 82 | v.lnb_switch_freq_200.LNB_CTLHighCount_sig = ax; |
83 | v.lnb_switch_freq_200.LNB_CTLLowCount_sig = ax; | 83 | v.lnb_switch_freq_200.LNB_CTLLowCount_sig = ax == 0 ? 0x1ff : ax; |
84 | 84 | ||
85 | return fc->write_ibi_reg(fc,lnb_switch_freq_200,v); | 85 | return fc->write_ibi_reg(fc,lnb_switch_freq_200,v); |
86 | } | 86 | } |