aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorAndrew de Quincey <adq_dvb@lidskialf.net>2006-06-29 12:16:11 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-30 14:59:40 -0400
commitc5e768a1ec281926e3a3a2b804d5004a2693d7e8 (patch)
tree8697c2fe5e3c0f0dec9683d59b21dbf8fd663cc4 /drivers/media
parentfd6decfbb86a73f3bdf3df2281191e7a978d8b77 (diff)
V4L/DVB (4277): Fix CI interface on PRO KNC1 cards
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: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb/ttpci/budget-av.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c
index 3df5d793147f..5f111d407730 100644
--- a/drivers/media/dvb/ttpci/budget-av.c
+++ b/drivers/media/dvb/ttpci/budget-av.c
@@ -1302,11 +1302,7 @@ static int budget_av_attach(struct saa7146_dev *dev, struct saa7146_pci_extensio
1302 1302
1303 budget_av->budget.dvb_adapter.priv = budget_av; 1303 budget_av->budget.dvb_adapter.priv = budget_av;
1304 frontend_init(budget_av); 1304 frontend_init(budget_av);
1305 1305 ciintf_init(budget_av);
1306 if (!budget_av->has_saa7113) {
1307 ciintf_init(budget_av);
1308 }
1309
1310 return 0; 1306 return 0;
1311} 1307}
1312 1308