aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorOleg Roitburd <oroitburd@gmail.com>2008-09-17 10:58:33 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:37:07 -0400
commitee73042c002b435cc8bc49414d466cc3f31af123 (patch)
tree7944245523d07c450b46905ef706f57c5a518c55 /drivers/media/video/cx88/cx88-dvb.c
parent4cd7fb876ce0beecd4907f81d1a16ea95f5d6d6e (diff)
V4L/DVB (9020): Added support for TBS 8920 DVB-S/S2 card
Added support for TBS 8920 DVB-S/S2 card. The card based on cx24116 demodulator. Signed-off-by: Oleg Roitburd <oroitburd@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index c86802b913ed..a6c4f66bb161 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -967,6 +967,15 @@ static int dvb_register(struct cx8802_dev *dev)
967 dev->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage; 967 dev->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
968 } 968 }
969 break; 969 break;
970 case CX88_BOARD_TBS_8920:
971 dev->dvb.frontend = dvb_attach(cx24116_attach,
972 &hauppauge_hvr4000_config,
973 &core->i2c_adap);
974 if (dev->dvb.frontend != NULL) {
975 core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage;
976 dev->dvb.frontend->ops.set_voltage = tevii_dvbs_set_voltage;
977 }
978 break;
970 default: 979 default:
971 printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n", 980 printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n",
972 core->name); 981 core->name);