dect
/
linux-2.6
Archived
13
0
Fork 0

[media] dvb: earth-pt1: remove unsupported net subdevices

PT1 and PT2 do not have net functions.

Signed-off-by: Akihiro Tsukada <tskd2@yahoo.co.jp>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Akihiro Tsukada 2012-03-10 11:38:16 -03:00 committed by Mauro Carvalho Chehab
parent 7ff04760f7
commit cd7334d6d6
1 changed files with 0 additions and 4 deletions

View File

@ -99,7 +99,6 @@ struct pt1_adapter {
struct dvb_demux demux;
int users;
struct dmxdev dmxdev;
struct dvb_net net;
struct dvb_frontend *fe;
int (*orig_set_voltage)(struct dvb_frontend *fe,
fe_sec_voltage_t voltage);
@ -624,7 +623,6 @@ static int pt1_wakeup(struct dvb_frontend *fe)
static void pt1_free_adapter(struct pt1_adapter *adap)
{
dvb_net_release(&adap->net);
adap->demux.dmx.close(&adap->demux.dmx);
dvb_dmxdev_release(&adap->dmxdev);
dvb_dmx_release(&adap->demux);
@ -694,8 +692,6 @@ pt1_alloc_adapter(struct pt1 *pt1)
if (ret < 0)
goto err_dmx_release;
dvb_net_init(dvb_adap, &adap->net, &demux->dmx);
return adap;
err_dmx_release: