Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93352f5c authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Linus Torvalds
Browse files

[PATCH] v4l: fixup on cx88_dvb for Dvico HDTV5 Gold



- Bug fix for DViCO FusionHDTV5 Gold to avoid noise after frontend init.

Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9db45506
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -221,9 +221,7 @@ static int lgdt330x_pll_set(struct dvb_frontend* fe,
	int err;

	/* Put the analog decoder in standby to keep it quiet */
	if (core->tda9887_conf) {
	cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);
	}

	dvb_pll_configure(core->pll_desc, buf, params->frequency, 0);
	dprintk(1, "%s: tuner at 0x%02x bytes: 0x%02x 0x%02x 0x%02x 0x%02x\n",
@@ -402,6 +400,9 @@ static int dvb_register(struct cx8802_dev *dev)
		dev->dvb.frontend->ops->info.frequency_max = dev->core->pll_desc->max;
	}

	/* Put the analog decoder in standby to keep it quiet */
	cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);

	/* register everything */
	return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev);
}