diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-12-29 14:52:23 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-01-11 15:19:25 +0100 |
commit | 0230d60e4661d9ced6fb0b9a30f182ebdafbba7a (patch) | |
tree | 7d9d8e71ba103473fe276b1c49040bfb72230f44 /drivers/media/usb/dvb-usb-v2 | |
parent | [media] dvbdev: remove two dead functions if !CONFIG_MEDIA_CONTROLLER_DVB (diff) | |
download | linux-0230d60e4661d9ced6fb0b9a30f182ebdafbba7a.tar.xz linux-0230d60e4661d9ced6fb0b9a30f182ebdafbba7a.zip |
[media] dvbdev: Add RF connector if needed
Several pure digital TV devices have a frontend with the tuner
integrated on it. Add the RF connector when dvb_create_media_graph()
is called on such devices.
Tested with siano and dvb_usb_mxl111sf drivers.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb-v2')
-rw-r--r-- | drivers/media/usb/dvb-usb-v2/dvb_usb_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c b/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c index 0fa2c45917b0..e8491f73c0d9 100644 --- a/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c +++ b/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c @@ -706,7 +706,7 @@ static int dvb_usbv2_adapter_frontend_init(struct dvb_usb_adapter *adap) } } - ret = dvb_create_media_graph(&adap->dvb_adap); + ret = dvb_create_media_graph(&adap->dvb_adap, true); if (ret < 0) goto err_dvb_unregister_frontend; |