diff options
author | Steven Toth <stoth@kernellabs.com> | 2009-07-20 14:37:25 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-12 11:17:57 -0400 |
commit | 1369738023900302ef9677c90c4da873b5593ee7 (patch) | |
tree | 8726e29c95872bf37c64ac15f0a1ddae4fe2ade6 /drivers/media/video/cx23885/cx23885-dvb.c | |
parent | 21ff3e4f63a3095f739f6398accd3b43d77e30b5 (diff) |
V4L/DVB (12306): cx23885: Add support for ATSC/QAM on Hauppauge HVR-1850
cx23885: Add support for ATSC/QAM on Hauppauge HVR-1850
Signed-off-by: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-dvb.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-dvb.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c index e4a22dcaf59b..f87a023a7351 100644 --- a/drivers/media/video/cx23885/cx23885-dvb.c +++ b/drivers/media/video/cx23885/cx23885-dvb.c | |||
@@ -866,6 +866,17 @@ static int dvb_register(struct cx23885_tsport *port) | |||
866 | &magicpro_prohdtve2_xc5000_config); | 866 | &magicpro_prohdtve2_xc5000_config); |
867 | } | 867 | } |
868 | break; | 868 | break; |
869 | case CX23885_BOARD_HAUPPAUGE_HVR1850: | ||
870 | i2c_bus = &dev->i2c_bus[0]; | ||
871 | fe0->dvb.frontend = dvb_attach(s5h1411_attach, | ||
872 | &hcw_s5h1411_config, | ||
873 | &i2c_bus->i2c_adap); | ||
874 | if (fe0->dvb.frontend != NULL) | ||
875 | dvb_attach(tda18271_attach, fe0->dvb.frontend, | ||
876 | 0x60, &dev->i2c_bus[0].i2c_adap, | ||
877 | &hauppauge_tda18271_config); | ||
878 | break; | ||
879 | |||
869 | default: | 880 | default: |
870 | printk(KERN_INFO "%s: The frontend of your DVB/ATSC card " | 881 | printk(KERN_INFO "%s: The frontend of your DVB/ATSC card " |
871 | " isn't supported yet\n", | 882 | " isn't supported yet\n", |