diff options
| author | Patrick Boettcher <pb@linuxtv.org> | 2007-07-31 13:19:28 +0200 |
|---|---|---|
| committer | Patrick Boettcher <pb@linuxtv.org> | 2007-07-31 13:19:28 +0200 |
| commit | e9e052222fb9425fe9e5f2dee61f0425cdb2c8c8 (patch) | |
| tree | 7c278562e63059d1522cef41f222d466dbec366d /linux/drivers/media/dvb/frontends | |
| parent | 14a54ced06defabba72c271d472e8e7e7e7734f1 (diff) | |
| download | mediapointer-dvb-s2-e9e052222fb9425fe9e5f2dee61f0425cdb2c8c8.tar.gz mediapointer-dvb-s2-e9e052222fb9425fe9e5f2dee61f0425cdb2c8c8.tar.bz2 | |
Fix support for DiB7000M-devices
From: Patrick Boettcher <pb@linuxtv.org>
Forgot to initialize the timf_default field.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
| -rw-r--r-- | linux/drivers/media/dvb/frontends/dib7000m.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/dib7000m.c b/linux/drivers/media/dvb/frontends/dib7000m.c index 31c7753ce..00cd5fcbd 100644 --- a/linux/drivers/media/dvb/frontends/dib7000m.c +++ b/linux/drivers/media/dvb/frontends/dib7000m.c @@ -1379,6 +1379,8 @@ struct dvb_frontend * dib7000m_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, demod->demodulator_priv = st; memcpy(&st->demod.ops, &dib7000m_ops, sizeof(struct dvb_frontend_ops)); + st->timf_default = cfg->bw->timf; + if (dib7000m_identify(st) != 0) goto error; |
