summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx88
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-03-25 12:04:18 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-03-25 12:04:18 -0300
commitc72566b0b7d46f2f44806ce248c168c67b7418dd (patch)
tree001913516ee3442a5be26f2ac3c7919b8f88b65f /linux/drivers/media/video/cx88
parentc385f35b24d3e17968392a94bc5b22517880603f (diff)
downloadmediapointer-dvb-s2-c72566b0b7d46f2f44806ce248c168c67b7418dd.tar.gz
mediapointer-dvb-s2-c72566b0b7d46f2f44806ce248c168c67b7418dd.tar.bz2
Reverted changeset 5463
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r--linux/drivers/media/video/cx88/cx88-dvb.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c
index 10e2df75f..2327b32fd 100644
--- a/linux/drivers/media/video/cx88/cx88-dvb.c
+++ b/linux/drivers/media/video/cx88/cx88-dvb.c
@@ -371,9 +371,18 @@ static int nxt200x_set_ts_param(struct dvb_frontend* fe, int is_punctured)
return 0;
}
+static int nxt200x_set_pll_input(u8* buf, int input)
+{
+ if (input)
+ buf[3] |= 0x08;
+ else
+ buf[3] &= ~0x08;
+ return 0;
+}
+
static struct nxt200x_config ati_hdtvwonder = {
.demod_address = 0x0a,
- .is_tuv1236d = 1,
+ .set_pll_input = nxt200x_set_pll_input,
.set_ts_params = nxt200x_set_ts_param,
};