V4L/DVB (5961): Fix support for DiB7000M-devices
Forgot to initialize the timf_default field. Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Родитель
8f6956c7f9
Коммит
3db78e5950
|
@ -515,6 +515,7 @@ static struct dibx000_bandwidth_config stk7700p_pll_config = {
|
||||||
(3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k
|
(3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k
|
||||||
60258167, // ifreq
|
60258167, // ifreq
|
||||||
20452225, // timf
|
20452225, // timf
|
||||||
|
30000000, // xtal
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct dib7000m_config stk7700p_dib7000m_config = {
|
static struct dib7000m_config stk7700p_dib7000m_config = {
|
||||||
|
|
|
@ -1344,6 +1344,8 @@ struct dvb_frontend * dib7000m_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr,
|
||||||
demod->demodulator_priv = st;
|
demod->demodulator_priv = st;
|
||||||
memcpy(&st->demod.ops, &dib7000m_ops, sizeof(struct dvb_frontend_ops));
|
memcpy(&st->demod.ops, &dib7000m_ops, sizeof(struct dvb_frontend_ops));
|
||||||
|
|
||||||
|
st->timf_default = cfg->bw->timf;
|
||||||
|
|
||||||
if (dib7000m_identify(st) != 0)
|
if (dib7000m_identify(st) != 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче