diff options
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 3 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88-dvb.c | 12 |
2 files changed, 13 insertions, 2 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 0d719faafd8a..8b66b642a76b 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1306,7 +1306,7 @@ static const struct cx88_board cx88_boards[] = { | |||
1306 | }, | 1306 | }, |
1307 | [CX88_BOARD_WINFAST_DTV2000H_J] = { | 1307 | [CX88_BOARD_WINFAST_DTV2000H_J] = { |
1308 | .name = "WinFast DTV2000 H rev. J", | 1308 | .name = "WinFast DTV2000 H rev. J", |
1309 | .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3, | 1309 | .tuner_type = TUNER_PHILIPS_FMD1216MEX_MK3, |
1310 | .radio_type = UNSET, | 1310 | .radio_type = UNSET, |
1311 | .tuner_addr = ADDR_UNSET, | 1311 | .tuner_addr = ADDR_UNSET, |
1312 | .radio_addr = ADDR_UNSET, | 1312 | .radio_addr = ADDR_UNSET, |
@@ -3232,6 +3232,7 @@ static void cx88_card_setup_pre_i2c(struct cx88_core *core) | |||
3232 | cx_set(MO_GP0_IO, 0x00001010); | 3232 | cx_set(MO_GP0_IO, 0x00001010); |
3233 | break; | 3233 | break; |
3234 | 3234 | ||
3235 | case CX88_BOARD_WINFAST_DTV2000H_J: | ||
3235 | case CX88_BOARD_HAUPPAUGE_HVR3000: | 3236 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
3236 | case CX88_BOARD_HAUPPAUGE_HVR4000: | 3237 | case CX88_BOARD_HAUPPAUGE_HVR4000: |
3237 | /* Init GPIO */ | 3238 | /* Init GPIO */ |
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c index 0829a4f65f6e..003937cd72f5 100644 --- a/drivers/media/video/cx88/cx88-dvb.c +++ b/drivers/media/video/cx88/cx88-dvb.c | |||
@@ -1000,7 +1000,6 @@ static int dvb_register(struct cx8802_dev *dev) | |||
1000 | } | 1000 | } |
1001 | break; | 1001 | break; |
1002 | case CX88_BOARD_WINFAST_DTV2000H: | 1002 | case CX88_BOARD_WINFAST_DTV2000H: |
1003 | case CX88_BOARD_WINFAST_DTV2000H_J: | ||
1004 | case CX88_BOARD_HAUPPAUGE_HVR1100: | 1003 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
1005 | case CX88_BOARD_HAUPPAUGE_HVR1100LP: | 1004 | case CX88_BOARD_HAUPPAUGE_HVR1100LP: |
1006 | case CX88_BOARD_HAUPPAUGE_HVR1300: | 1005 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
@@ -1014,6 +1013,17 @@ static int dvb_register(struct cx8802_dev *dev) | |||
1014 | goto frontend_detach; | 1013 | goto frontend_detach; |
1015 | } | 1014 | } |
1016 | break; | 1015 | break; |
1016 | case CX88_BOARD_WINFAST_DTV2000H_J: | ||
1017 | fe0->dvb.frontend = dvb_attach(cx22702_attach, | ||
1018 | &hauppauge_hvr_config, | ||
1019 | &core->i2c_adap); | ||
1020 | if (fe0->dvb.frontend != NULL) { | ||
1021 | if (!dvb_attach(simple_tuner_attach, fe0->dvb.frontend, | ||
1022 | &core->i2c_adap, 0x61, | ||
1023 | TUNER_PHILIPS_FMD1216MEX_MK3)) | ||
1024 | goto frontend_detach; | ||
1025 | } | ||
1026 | break; | ||
1017 | case CX88_BOARD_HAUPPAUGE_HVR3000: | 1027 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
1018 | /* MFE frontend 1 */ | 1028 | /* MFE frontend 1 */ |
1019 | mfe_shared = 1; | 1029 | mfe_shared = 1; |