summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends/mt2266.c
diff options
context:
space:
mode:
authorPatrick Boettcher <pb@linuxtv.org>2007-07-27 15:08:51 +0200
committerPatrick Boettcher <pb@linuxtv.org>2007-07-27 15:08:51 +0200
commit60d6f86f2ef2879ab24f59088cf3a7e3ec0b048b (patch)
tree7f8d5bb80f42850297a5abf5d5814bf3cb061fc4 /linux/drivers/media/dvb/frontends/mt2266.c
parentb0e920555b166ad438226526c4393703808f76fc (diff)
downloadmediapointer-dvb-s2-60d6f86f2ef2879ab24f59088cf3a7e3ec0b048b.tar.gz
mediapointer-dvb-s2-60d6f86f2ef2879ab24f59088cf3a7e3ec0b048b.tar.bz2
Sync with DiBcom Driver Release 2.1.3 + some improvements
From: Patrick Boettcher <pboettcher@dibcom.fr> This changesets syncs the OpenSource driver for DiBcom demodulators with version 2.1.3 of DiBcom reference driver. There were some improvements since the last release for linux-dvb, e.g.: - stepped AGC startup - less space for initialization - diversity synchronization Furthermore this changeset contains the following things: - latest AGC settings for MT2266-based devices (namely Nova-TD and other) will improve the sensitivity - support for STK7700D reference design in dib0700-devices - remove some line-breaks when debugging is enabled - getting rid of layer between frontend_parameters and ofdm_channel used in dib*-drivers Signed-off-by: Patrick Boettcher <pboettcher@dibcom.fr>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/mt2266.c')
-rw-r--r--linux/drivers/media/dvb/frontends/mt2266.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt2266.c b/linux/drivers/media/dvb/frontends/mt2266.c
index 145135778..33b388e8f 100644
--- a/linux/drivers/media/dvb/frontends/mt2266.c
+++ b/linux/drivers/media/dvb/frontends/mt2266.c
@@ -159,7 +159,7 @@ static int mt2266_set_params(struct dvb_frontend *fe, struct dvb_frontend_parame
b[3] = tune >> 13;
mt2266_writeregs(priv,b,4);
- dprintk("set_parms: tune=%d band=%d\n",(int)tune,(int)lnaband);
+ dprintk("set_parms: tune=%d band=%d",(int)tune,(int)lnaband);
dprintk("set_parms: [1..3]: %2x %2x %2x",(int)b[1],(int)b[2],(int)b[3]);
b[0] = 0x05;
@@ -176,7 +176,7 @@ static int mt2266_set_params(struct dvb_frontend *fe, struct dvb_frontend_parame
msleep(10);
i++;
} while (i<10);
- dprintk("Lock when i=%i\n",(int)i);
+ dprintk("Lock when i=%i",(int)i);
return ret;
}