aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/saa7134/saa7134-cards.c
diff options
context:
space:
mode:
authorGlen Gray <glen@lincor.com>2005-11-09 00:36:12 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-09 10:56:06 -0500
commit2d14f78e4bfa55e5a534cc4c03ddab8841a1b32e (patch)
tree64c02875395c4a8f52c7944b9bc90486da39d61a /drivers/media/video/saa7134/saa7134-cards.c
parentcc952d03c0c36ec9a4c2a683015dbb98e8a889df (diff)
[PATCH] v4l: 627: added support for oem version of flytv platinum mini with a
- Added support for OEM version of FlyTV Platinum mini with a subvendor id of 0x4e42. - Added the OEM PCI id's to the docs/CARDLIST.saa7134 for item 39 - Modified the vmux in the SAA7134_BOARD_FLYTVPLATINUM_MINI driver data from 0 (Composite over S-Video) to 3 (Composite). Signed-off-by: Glen Gray <glen@lincor.com> Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/saa7134/saa7134-cards.c')
-rw-r--r--drivers/media/video/saa7134/saa7134-cards.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c
index acc7a4335e23..a67a0a11c6db 100644
--- a/drivers/media/video/saa7134/saa7134-cards.c
+++ b/drivers/media/video/saa7134/saa7134-cards.c
@@ -191,10 +191,14 @@ struct saa7134_board saa7134_boards[] = {
191 .amux = TV, 191 .amux = TV,
192 .tv = 1, 192 .tv = 1,
193 },{ 193 },{
194 .name = name_comp1, 194 .name = name_comp1, /* Composite signal on S-Video input */
195 .vmux = 0, 195 .vmux = 0,
196 .amux = LINE2, 196 .amux = LINE2,
197 },{ 197 },{
198 .name = name_comp2, /* Composite input */
199 .vmux = 3,
200 .amux = LINE2,
201 },{
198 .name = name_svideo, 202 .name = name_svideo,
199 .vmux = 8, 203 .vmux = 8,
200 .amux = LINE2, 204 .amux = LINE2,
@@ -2193,6 +2197,12 @@ struct pci_device_id saa7134_pci_tbl[] = {
2193 },{ 2197 },{
2194 .vendor = PCI_VENDOR_ID_PHILIPS, 2198 .vendor = PCI_VENDOR_ID_PHILIPS,
2195 .device = PCI_DEVICE_ID_PHILIPS_SAA7133, 2199 .device = PCI_DEVICE_ID_PHILIPS_SAA7133,
2200 .subvendor = 0x4e42,
2201 .subdevice = 0x0212, /* OEM minipci, LR212 */
2202 .driver_data = SAA7134_BOARD_FLYTVPLATINUM_MINI,
2203 },{
2204 .vendor = PCI_VENDOR_ID_PHILIPS,
2205 .device = PCI_DEVICE_ID_PHILIPS_SAA7133,
2196 .subvendor = 0x5168, /* Animation Technologies (LifeView) */ 2206 .subvendor = 0x5168, /* Animation Technologies (LifeView) */
2197 .subdevice = 0x0214, /* Standard PCI, LR214WF */ 2207 .subdevice = 0x0214, /* Standard PCI, LR214WF */
2198 .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM, 2208 .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM,