diff options
-rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index f2268631b7c0..746ccaf40cfa 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1085,6 +1085,7 @@ static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data) | |||
1085 | core->has_radio = tv.has_radio; | 1085 | core->has_radio = tv.has_radio; |
1086 | } | 1086 | } |
1087 | 1087 | ||
1088 | /* fixme: This is bogus code... add new pnp code to parse or see tveeprom.ko */ | ||
1088 | static int hauppauge_eeprom_dvb(struct cx88_core *core, u8 *ee) | 1089 | static int hauppauge_eeprom_dvb(struct cx88_core *core, u8 *ee) |
1089 | { | 1090 | { |
1090 | int model; | 1091 | int model; |
@@ -1093,9 +1094,11 @@ static int hauppauge_eeprom_dvb(struct cx88_core *core, u8 *ee) | |||
1093 | /* Make sure we support the board model */ | 1094 | /* Make sure we support the board model */ |
1094 | model = ee[0x1f] << 24 | ee[0x1e] << 16 | ee[0x1d] << 8 | ee[0x1c]; | 1095 | model = ee[0x1f] << 24 | ee[0x1e] << 16 | ee[0x1d] << 8 | ee[0x1c]; |
1095 | switch(model) { | 1096 | switch(model) { |
1096 | case 90002: | 1097 | case 90002: /* Nova-T-PCI (9002) */ |
1097 | case 90500: | 1098 | case 90500: /* Nova-T-PCI (oem) */ |
1098 | case 90501: | 1099 | case 90501: /* Nova-T-PCI (oem/IR) */ |
1100 | case 92000: /* Nova-S-Plus */ | ||
1101 | case 92002: /* Nova-SE2 */ | ||
1099 | /* known */ | 1102 | /* known */ |
1100 | break; | 1103 | break; |
1101 | default: | 1104 | default: |