Browse Source

[media] ngene: Fix return code if no demux was found

Fix return code if no demux was found (cineS2_probe).

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Oliver Endriss 14 years ago
parent
commit
d9396b8410
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/media/dvb/ngene/ngene-cards.c

+ 1 - 0
drivers/media/dvb/ngene/ngene-cards.c

@@ -274,6 +274,7 @@ static int cineS2_probe(struct ngene_channel *chan)
 		demod_attach_drxk(chan, i2c);
 	} else {
 		printk(KERN_ERR "No demod found on chan %d\n", chan->number);
+		return -ENODEV;
 	}
 	return 0;
 }