[PATCH] dvb: dst: fix DVB-C tuning
Fix BUG in DVB-C frequency setting. Thanks to Peng Cao <caopeng75@gmail.com> Signed-off-by: Manu Abraham <manu@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>
This commit is contained in:
parent
62121b1f9e
commit
62867429d0
|
@ -359,6 +359,7 @@ static int dst_set_freq(struct dst_state *state, u32 freq)
|
|||
state->tx_tuna[3] = (freq >> 8) & 0xff;
|
||||
state->tx_tuna[4] = (u8) freq;
|
||||
} else if (state->dst_type == DST_TYPE_IS_CABLE) {
|
||||
freq = freq / 1000;
|
||||
state->tx_tuna[2] = (freq >> 16) & 0xff;
|
||||
state->tx_tuna[3] = (freq >> 8) & 0xff;
|
||||
state->tx_tuna[4] = (u8) freq;
|
||||
|
|
Loading…
Reference in New Issue