summaryrefslogtreecommitdiff
path: root/drivers/media/pci/saa7134
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-02-19 15:03:54 -0200
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-02-23 07:16:06 -0300
commit55d066a4c7b9e2e0c40eaac87a741f7217af6e8b (patch)
treeecb705ddf18e489e13b4f342a8d6f5063a9cbbf9 /drivers/media/pci/saa7134
parent60ad768933ec16e784087f6d07aeeb0e91149221 (diff)
[media] saa7134: fix detection of external decoders
As warned by smatch: drivers/media/pci/saa7134/saa7134-core.c:840 saa7134_create_entities() info: ignoring unreachable code. drivers/media/pci/saa7134/saa7134-core.c:843 saa7134_create_entities() warn: curly braces intended? Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/saa7134')
-rw-r--r--drivers/media/pci/saa7134/saa7134-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/pci/saa7134/saa7134-core.c b/drivers/media/pci/saa7134/saa7134-core.c
index 42bc4172febd..8f3ba4077130 100644
--- a/drivers/media/pci/saa7134/saa7134-core.c
+++ b/drivers/media/pci/saa7134/saa7134-core.c
@@ -838,9 +838,10 @@ static void saa7134_create_entities(struct saa7134_dev *dev)
/* Check if it is using an external analog TV demod */
media_device_for_each_entity(entity, dev->media_dev) {
- if (entity->function == MEDIA_ENT_F_ATV_DECODER)
+ if (entity->function == MEDIA_ENT_F_ATV_DECODER) {
decoder = entity;
break;
+ }
}
/*