[media] dvbdev: enable DVB-specific links
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 6 Jan 2015 16:13:31 +0000 (13:13 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 13 Feb 2015 23:10:16 +0000 (21:10 -0200)
For now, let's keep the DVB-specific media controller links enabled
by default. On most devices, this is fixed anyway, so no big issue.

Ok, the demux actually have dynamic links based on the filters, but
we don't represent them yet, as the media controller currently lacks
the capability of dynamically create/delete entities.

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/dvb-core/dvbdev.c

index a991819ed1e11aea8eb060c1d138a6ae1283a0d7..0af9d0c5f889b334600895cda266ba3e43b0dac2 100644 (file)
@@ -414,13 +414,13 @@ void dvb_create_media_graph(struct media_device *mdev)
                media_entity_create_link(tuner, 0, fe, 0, 0);
 
        if (fe && demux)
-               media_entity_create_link(fe, 1, demux, 0, 0);
+               media_entity_create_link(fe, 1, demux, 0, MEDIA_LNK_FL_ENABLED);
 
        if (demux && dvr)
-               media_entity_create_link(demux, 1, dvr, 0, 0);
+               media_entity_create_link(demux, 1, dvr, 0, MEDIA_LNK_FL_ENABLED);
 
        if (demux && ca)
-               media_entity_create_link(demux, 1, ca, 0, 0);
+               media_entity_create_link(demux, 1, ca, 0, MEDIA_LNK_FL_ENABLED);
 #endif
 }
 EXPORT_SYMBOL_GPL(dvb_create_media_graph);
This page took 0.025202 seconds and 5 git commands to generate.