diff options
author | Holger Waechtler <devnull@localhost> | 2002-10-21 14:59:34 +0000 |
---|---|---|
committer | Holger Waechtler <devnull@localhost> | 2002-10-21 14:59:34 +0000 |
commit | 1096a80245bcce87cbd7719b0188d30bd9b8c00a (patch) | |
tree | 3eba7e476d92a6a8841ebdf75514b100cda4a0c0 | |
parent | ac11ddbc4e09e02de28a974e0ce777213cb6d37f (diff) | |
download | mediapointer-dvb-s2-1096a80245bcce87cbd7719b0188d30bd9b8c00a.tar.gz mediapointer-dvb-s2-1096a80245bcce87cbd7719b0188d30bd9b8c00a.tar.bz2 |
less verbosity
-rw-r--r-- | linux/drivers/media/dvb/frontends/alps_tdmb7.c | 8 |
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; |