]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
v4l/dvb: Fix CI interface on PRO KNC1 cards
authorAndrew de Quincey <adq_dvb@lidskialf.net>
Fri, 30 Jun 2006 19:52:07 +0000 (15:52 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 25 Jul 2006 03:35:20 +0000 (20:35 -0700)
The original driver had a restriction that if a card as an saa7113 chip,
then it cannot have a CI interface. This is not the case.

Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/media/dvb/ttpci/budget-av.c

index 4a60967d0a7d4347e845ad2e0751f1f75f79c687..aaaae40e66ed8056828a87725128befe1ec2551c 100644 (file)
@@ -1218,11 +1218,7 @@ static int budget_av_attach(struct saa7146_dev *dev, struct saa7146_pci_extensio
 
        budget_av->budget.dvb_adapter.priv = budget_av;
        frontend_init(budget_av);
-
-       if (!budget_av->has_saa7113) {
-               ciintf_init(budget_av);
-       }
-
+       ciintf_init(budget_av);
        return 0;
 }