2005-09-04 23:47:49

by Johannes Stezenbach

[permalink] [raw]
Subject: [DVB patch 41/54] dst: fix DVB-C tuning

From: Manu Abraham <[email protected]>

Fix BUG in DVB-C frequency setting.
Thanks to Peng Cao <[email protected]>

Signed-off-by: Manu Abraham <[email protected]>
Signed-off-by: Johannes Stezenbach <[email protected]>

drivers/media/dvb/bt8xx/dst.c | 1 +
1 file changed, 1 insertion(+)

--- linux-2.6.13-git4.orig/drivers/media/dvb/bt8xx/dst.c 2005-09-04 22:28:35.000000000 +0200
+++ linux-2.6.13-git4/drivers/media/dvb/bt8xx/dst.c 2005-09-04 22:28:37.000000000 +0200
@@ -359,6 +359,7 @@ static int dst_set_freq(struct dst_state
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;

--