]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[media] au0828: Fix the logic that enables the analog demoder link
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 20 Aug 2015 09:53:10 +0000 (06:53 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 11 Jan 2016 14:18:40 +0000 (12:18 -0200)
This logic was broken on the original patch, likely due to a
cut-and-paste mistake.

Fix it.

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/usb/au0828/au0828-video.c

index 57d7b9b45123cc518935c8eb6fca3c4e6855b4d8..a1df4eb93b1486a2673ffe53c77e3c7d6f74c090 100644 (file)
@@ -642,7 +642,7 @@ static int au0828_enable_analog_tuner(struct au0828_dev *dev)
 {
 #ifdef CONFIG_MEDIA_CONTROLLER
        struct media_device *mdev = dev->media_dev;
-       struct media_entity  *entity, *source;
+       struct media_entity *source;
        struct media_link *link, *found_link = NULL;
        int i, ret, active_links = 0;
 
@@ -677,7 +677,7 @@ static int au0828_enable_analog_tuner(struct au0828_dev *dev)
                link = &source->links[i];
                sink = link->sink->entity;
 
-               if (sink == entity)
+               if (sink == dev->decoder)
                        flags = MEDIA_LNK_FL_ENABLED;
 
                ret = media_entity_setup_link(link, flags);