Files
bpfire/src/patches/v4l-dvb_fix_tua6034_pll.patch
Arne Fitzenreiter 48bf31fa46 v4l-dvb: fix tua6034 pll bandwich config.
Now the Skymaster DTMU 100 works again.
2012-10-25 15:10:34 +02:00

13 lines
538 B
Diff

diff -Naur v4l-dvb-20120916.org/linux/drivers/media/dvb-frontends/dvb-pll.c v4l-dvb-20120916/linux/drivers/media/dvb-frontends/dvb-pll.c
--- v4l-dvb-20120916.org/linux/drivers/media/dvb-frontends/dvb-pll.c 2012-08-14 05:45:22.000000000 +0200
+++ v4l-dvb-20120916/linux/drivers/media/dvb-frontends/dvb-pll.c 2012-10-25 14:06:42.123360189 +0200
@@ -247,7 +247,7 @@
static void tua6034_bw(struct dvb_frontend *fe, u8 *buf)
{
u32 bw = fe->dtv_property_cache.bandwidth_hz;
- if (bw == 7000000)
+ if (bw != 7000000)
buf[3] |= 0x08;
}