mirror of https://gitee.com/openkylin/linux.git
[media] dvb_usb_v2: remove .num_frontends
It is no longer needed because all frontends are attached as a one go. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
20bb9cc483
commit
1c9c73b7db
|
@ -135,7 +135,6 @@ struct dvb_usb_adapter_properties {
|
|||
int (*fe_ioctl_override) (struct dvb_frontend *,
|
||||
unsigned int, void *, unsigned int);
|
||||
|
||||
int num_frontends;
|
||||
struct usb_data_stream_properties stream;
|
||||
};
|
||||
|
||||
|
|
|
@ -186,7 +186,6 @@ static int dvb_usb_stop_feed(struct dvb_demux_feed *dvbdmxfeed)
|
|||
|
||||
int dvb_usb_adapter_dvb_init(struct dvb_usb_adapter *adap)
|
||||
{
|
||||
int i;
|
||||
int ret = dvb_register_adapter(&adap->dvb_adap, adap->dev->name,
|
||||
adap->dev->props.owner,
|
||||
&adap->dev->udev->dev,
|
||||
|
@ -211,10 +210,8 @@ int dvb_usb_adapter_dvb_init(struct dvb_usb_adapter *adap)
|
|||
adap->demux.priv = adap;
|
||||
|
||||
adap->demux.filternum = 0;
|
||||
for (i = 0; i < adap->props.num_frontends; i++) {
|
||||
if (adap->demux.filternum < adap->max_feed_count)
|
||||
adap->demux.filternum = adap->max_feed_count;
|
||||
}
|
||||
if (adap->demux.filternum < adap->max_feed_count)
|
||||
adap->demux.filternum = adap->max_feed_count;
|
||||
adap->demux.feednum = adap->demux.filternum;
|
||||
adap->demux.start_feed = dvb_usb_start_feed;
|
||||
adap->demux.stop_feed = dvb_usb_stop_feed;
|
||||
|
|
Loading…
Reference in New Issue