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

Commit 129a2f5e authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (7691): pvrusb2-dvb: Don't initialize if device lacks a digital side



In the end we'd like the dvb interface to always be present - even for
analog devices (via the mpeg encoder).  However right now pvrusb2-dvb
won't operate correctly if the hardware doesn't have a digital tuner,
so don't initialize the DVB interface unless we know we have a digital
tuner.

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 7dcc48fb
Loading
Loading
Loading
Loading
+12 −3
Original line number Original line Diff line number Diff line
@@ -401,16 +401,25 @@ int pvr2_dvb_init(struct pvr2_context *pvr)
{
{
	int ret = 0;
	int ret = 0;
	struct pvr2_dvb_adapter *adap;
	struct pvr2_dvb_adapter *adap;
	if (!pvr->hdw->hdw_desc->dvb_props) {
		/* Device lacks a digital interface so don't set up
		   the DVB side of the driver either.  For now. */
		return 0;
	}
	adap = &pvr->hdw->dvb;
	adap = &pvr->hdw->dvb;
	pvr2_channel_init(&adap->channel, pvr);
	pvr2_channel_init(&adap->channel, pvr);
	adap->channel.check_func = pvr2_dvb_internal_check;
	adap->channel.check_func = pvr2_dvb_internal_check;
	init_waitqueue_head(&adap->buffer_wait_data);
	init_waitqueue_head(&adap->buffer_wait_data);
	mutex_init(&pvr->hdw->dvb.lock);
	mutex_init(&pvr->hdw->dvb.lock);
	ret = pvr2_dvb_adapter_init(&pvr->hdw->dvb);
	ret = pvr2_dvb_adapter_init(&pvr->hdw->dvb);
	if (ret < 0) goto fail;
	if (ret < 0) goto fail1;
	ret = pvr2_dvb_frontend_init(&pvr->hdw->dvb);
	ret = pvr2_dvb_frontend_init(&pvr->hdw->dvb);
	return ret;
	if (ret < 0) goto fail2;
fail:
	return 0;

fail2:
	pvr2_dvb_adapter_exit(adap);
fail1:
	pvr2_channel_done(&adap->channel);
	pvr2_channel_done(&adap->channel);
	return ret;
	return ret;
}
}