aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/mt2266.c
diff options
context:
space:
mode:
authorPatrick Boettcher <pboettcher@dibcom.fr>2007-07-27 09:08:51 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-10-09 21:03:43 -0400
commitb6884a17fc70e979ef34e4b5560988b522bb50a0 (patch)
treea1be75fb986d578f810d3cd017dbaa678c068b99 /drivers/media/dvb/frontends/mt2266.c
parentb2a657603e7285bf05b86ad198111b5403c57b41 (diff)
V4L/DVB (5954): Sync with DiBcom Driver Release 2.1.3 + some improvements
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> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/mt2266.c')
-rw-r--r--drivers/media/dvb/frontends/mt2266.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/mt2266.c b/drivers/media/dvb/frontends/mt2266.c
index 145135778bce..33b388e8f7b8 100644
--- a/drivers/media/dvb/frontends/mt2266.c
+++ b/drivers/media/dvb/frontends/mt2266.c
@@ -159,7 +159,7 @@ static int mt2266_set_params(struct dvb_frontend *fe, struct dvb_frontend_parame
159 b[3] = tune >> 13; 159 b[3] = tune >> 13;
160 mt2266_writeregs(priv,b,4); 160 mt2266_writeregs(priv,b,4);
161 161
162 dprintk("set_parms: tune=%d band=%d\n",(int)tune,(int)lnaband); 162 dprintk("set_parms: tune=%d band=%d",(int)tune,(int)lnaband);
163 dprintk("set_parms: [1..3]: %2x %2x %2x",(int)b[1],(int)b[2],(int)b[3]); 163 dprintk("set_parms: [1..3]: %2x %2x %2x",(int)b[1],(int)b[2],(int)b[3]);
164 164
165 b[0] = 0x05; 165 b[0] = 0x05;
@@ -176,7 +176,7 @@ static int mt2266_set_params(struct dvb_frontend *fe, struct dvb_frontend_parame
176 msleep(10); 176 msleep(10);
177 i++; 177 i++;
178 } while (i<10); 178 } while (i<10);
179 dprintk("Lock when i=%i\n",(int)i); 179 dprintk("Lock when i=%i",(int)i);
180 return ret; 180 return ret;
181} 181}
182 182