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

Commit 4bf2c5c3 authored by Pedro Andres Aranda Gutierrez's avatar Pedro Andres Aranda Gutierrez Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (13579): PATCH: better support for INTUIX DVB stick boot



The device is bootingcorrectly, but no frontend is attached.
This patch corrects this behaviour.

Signed-off-by: default avatarPedro Andres Aranda Gutierrez <paaguti@gmail.com>
Signed-off-by: default avatarPatrick Boettcher <pboettcher@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 81afda51
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -243,6 +243,12 @@ static struct dib3000mc_config mod3000p_dib3000p_config = {

int dibusb_dib3000mc_frontend_attach(struct dvb_usb_adapter *adap)
{
	if (adap->dev->udev->descriptor.idVendor  == USB_VID_LITEON &&
			adap->dev->udev->descriptor.idProduct ==
			USB_PID_LITEON_DVB_T_WARM) {
		msleep(1000);
	}

	if ((adap->fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap, DEFAULT_DIB3000P_I2C_ADDRESS,  &mod3000p_dib3000p_config)) != NULL ||
		(adap->fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap, DEFAULT_DIB3000MC_I2C_ADDRESS, &mod3000p_dib3000p_config)) != NULL) {
		if (adap->priv != NULL) {