summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/dvb-usb
diff options
context:
space:
mode:
author <>2009-08-03 18:43:40 +0200
committer <>2009-08-03 18:43:40 +0200
commitdad399b7c716c3c9da58c47f1dca59627a7d23f5 (patch)
tree6e856c55acb89a25b00764374d693a4e8f43cbaf /linux/drivers/media/dvb/dvb-usb
parent0dc1c1447192743fcb90d7e51d3e5fab897b5388 (diff)
downloadmediapointer-dvb-s2-dad399b7c716c3c9da58c47f1dca59627a7d23f5.tar.gz
mediapointer-dvb-s2-dad399b7c716c3c9da58c47f1dca59627a7d23f5.tar.bz2
DiB0070: Update to latest internal release
From: Patrick Boettcher <Patrick.Boettcher@dibcom.fr> General update of the dib0070-driver based on DiBcom's latest release. New driver features can enable better performance in some reception situations. Priority: normal Signed-off-by: Patrick Boettcher <Patrick.Boettcher@dibcom.fr>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb')
-rw-r--r--linux/drivers/media/dvb/dvb-usb/dib0700_devices.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
index 81cda8061..216bdbbf7 100644
--- a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
+++ b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
@@ -1096,11 +1096,13 @@ static struct dibx000_agc_config dib7070_agc_config = {
static int dib7070_tuner_reset(struct dvb_frontend *fe, int onoff)
{
+ deb_info("reset: %d", onoff);
return dib7000p_set_gpio(fe, 8, 0, !onoff);
}
static int dib7070_tuner_sleep(struct dvb_frontend *fe, int onoff)
{
+ deb_info("sleep: %d", onoff);
return dib7000p_set_gpio(fe, 9, 0, onoff);
}
@@ -1110,13 +1112,14 @@ static struct dib0070_config dib7070p_dib0070_config[2] = {
.reset = dib7070_tuner_reset,
.sleep = dib7070_tuner_sleep,
.clock_khz = 12000,
- .clock_pad_drive = 4
+ .clock_pad_drive = 4,
+ .charge_pump = 2,
}, {
.i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
.reset = dib7070_tuner_reset,
.sleep = dib7070_tuner_sleep,
.clock_khz = 12000,
-
+ .charge_pump = 2,
}
};