summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/dvb/frontends/alps_tdmb7.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/frontends/alps_tdmb7.c b/linux/drivers/media/dvb/frontends/alps_tdmb7.c
index b17f5a0c9..6303b8a29 100644
--- a/linux/drivers/media/dvb/frontends/alps_tdmb7.c
+++ b/linux/drivers/media/dvb/frontends/alps_tdmb7.c
@@ -23,8 +23,8 @@
#include <linux/init.h>
#include <linux/module.h>
-#include "../compat.h"
-#include "../dvb_frontend.h"
+#include "compat.h"
+#include "dvb_frontend.h"
static int debug = 0;
@@ -126,7 +126,7 @@ int pll_write (struct dvb_i2c_bus *i2c, u8 data [4])
{
struct i2c_msg msg = { addr: 0x61, flags: 0, buf: data, len: 4 };
int ret;
-printk ("%s: [%02x %02x %02x %02x]\n", __FUNCTION__, data[0]&0xff, data[1]&0xff, data[2]&0xff, data[3]&0xff);
+
cx22700_writereg (i2c, 0x0a, 0x00); /* open i2c bus switch */
ret = i2c->xfer (i2c, &msg, 1);
cx22700_writereg (i2c, 0x0a, 0x01); /* close i2c bus switch */
@@ -244,7 +244,7 @@ int cx22700_set_tps (struct dvb_i2c_bus *i2c, struct dvb_ofdm_parameters *p)
cx22700_writereg (i2c, 0x09, cx22700_readreg (i2c, 0x09 | 0x10));
else
cx22700_writereg (i2c, 0x09, cx22700_readreg (i2c, 0x09 & ~0x10));
-printk ("start setting TPS...\n");
+
val = qam_tab[p->constellation - QPSK];
val |= p->hierarchy_information - HIERARCHY_NONE;