Commit e3ab2fdd authored by Mario Rossi's avatar Mario Rossi Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4998): [PATCH] DIB3000MC and NOVA T USB2 #2



Second part of the patch to make the autosearch work again with DiB3000P/MC.

Signed-off-by: default avatarMario Rossi <mariofutire@googlemail.com>
Signed-off-by: default avatarPatrick Boettcher <pb@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent ce700b4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -475,7 +475,7 @@ static void dib3000mc_set_channel_cfg(struct dib3000mc_state *state, struct dibx
	tmp = ((chan->nfft & 0x1) << 7) | (chan->guard << 5) | (chan->nqam << 3) | chan->vit_alpha;
	dib3000mc_write_word(state, 0, tmp);

	dib3000mc_write_word(state, 5, seq);
	dib3000mc_write_word(state, 5, (1 << 8) | ((seq & 0xf) << 4));

	tmp = (chan->vit_hrch << 4) | (chan->vit_select_hp);
	if (!chan->vit_hrch || (chan->vit_hrch && chan->vit_select_hp))