[media] saa7134: fix warning with !MEDIA_CONTROLLER
authorArnd Bergmann <arnd@arndb.de>
Fri, 26 Feb 2016 15:25:17 +0000 (12:25 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 3 Mar 2016 17:12:46 +0000 (14:12 -0300)
When CONFIG_MEDIA_CONTROLLER is disabled, we get a warning
about an unused function:

drivers/media/pci/saa7134/saa7134-core.c:832:13: error: 'saa7134_create_entities' defined but not used [-Werror=unused-function]

This moves the #ifdef outside of the function, as it is
never called here.

Fixes: ac90aa02d5b9 ("[media] saa7134: add media controller support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/pci/saa7134/saa7134-core.c

index 2e77a5a8011907468e3ee68524accdf0e03e5157..c0e1780ec831977a6daa61ef24030c42797c3be7 100644 (file)
@@ -829,9 +829,9 @@ static void saa7134_media_release(struct saa7134_dev *dev)
 #endif
 }
 
+#if defined(CONFIG_MEDIA_CONTROLLER)
 static void saa7134_create_entities(struct saa7134_dev *dev)
 {
-#if defined(CONFIG_MEDIA_CONTROLLER)
        int ret, i;
        struct media_entity *entity;
        struct media_entity *decoder = NULL;
@@ -951,8 +951,8 @@ static void saa7134_create_entities(struct saa7134_dev *dev)
                if (ret < 0)
                        pr_err("failed to register input entity %d!\n", i);
        }
-#endif
 }
+#endif
 
 static struct video_device *vdev_init(struct saa7134_dev *dev,
                                      struct video_device *template,
This page took 0.028382 seconds and 5 git commands to generate.