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

From: Johannes Stezenbach
Date: Sun Sep 04 2005 - 18:49:06 EST


From: Manu Abraham <manu@xxxxxxxxxxx>

Fix BUG in DVB-C frequency setting.
Thanks to Peng Cao <caopeng75@xxxxxxxxx>

Signed-off-by: Manu Abraham <manu@xxxxxxxxxxx>
Signed-off-by: Johannes Stezenbach <js@xxxxxxxxxxx>

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;

--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/