]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] dvbdev: move indirect links on dvr/demux to a separate function
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sun, 6 Sep 2015 16:28:48 +0000 (13:28 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 11 Jan 2016 14:19:01 +0000 (12:19 -0200)
Cleanup the code a little bit by moving the routine that creates
links between DVR and demux to the I/O entitis into a separate
function.

While here, fix the code to use strncmp() instead of strcmp().

Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/dvb-core/dvbdev.c

index f64e8b3fb6870281edbc109bb05bd5f212a7f758..d51a328bdcf98cadd75f002f160a6a9862ff41e8 100644 (file)
@@ -540,6 +540,28 @@ EXPORT_SYMBOL(dvb_unregister_device);
 
 
 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
+
+static int dvb_create_io_intf_links(struct dvb_adapter *adap,
+                                   struct media_interface *intf,
+                                   char *name)
+{
+       struct media_device *mdev = adap->mdev;
+       struct media_entity *entity;
+       struct media_link *link;
+
+       media_device_for_each_entity(entity, mdev) {
+               if (entity->function == MEDIA_ENT_F_IO_DTV) {
+                       if (strncmp(entity->name, name, strlen(name)))
+                               continue;
+                       link = media_create_intf_link(entity, intf,
+                                                     MEDIA_LNK_FL_ENABLED);
+                       if (!link)
+                               return -ENOMEM;
+               }
+       }
+       return 0;
+}
+
 int dvb_create_media_graph(struct dvb_adapter *adap)
 {
        struct media_device *mdev = adap->mdev;
@@ -637,25 +659,15 @@ int dvb_create_media_graph(struct dvb_adapter *adap)
                        if (!link)
                                return -ENOMEM;
                }
-
-               media_device_for_each_entity(entity, mdev) {
-                       if (entity->function == MEDIA_ENT_F_IO_DTV) {
-                               if (!strcmp(entity->name, DVR_TSOUT)) {
-                                       link = media_create_intf_link(entity,
-                                                       intf,
-                                                       MEDIA_LNK_FL_ENABLED);
-                                       if (!link)
-                                               return -ENOMEM;
-                               }
-                               if (!strcmp(entity->name, DEMUX_TSOUT)) {
-                                       link = media_create_intf_link(entity,
-                                                       intf,
-                                                       MEDIA_LNK_FL_ENABLED);
-                                       if (!link)
-                                               return -ENOMEM;
-                               }
-                               break;
-                       }
+               if (intf->type == MEDIA_INTF_T_DVB_DVR) {
+                       ret = dvb_create_io_intf_links(adap, intf, DVR_TSOUT);
+                       if (ret)
+                               return ret;
+               }
+               if (intf->type == MEDIA_INTF_T_DVB_DEMUX) {
+                       ret = dvb_create_io_intf_links(adap, intf, DEMUX_TSOUT);
+                       if (ret)
+                               return ret;
                }
        }
        return 0;