diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-17 14:49:17 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-17 14:49:17 -0200 |
commit | e0b7504caf309e3f34c1fecdfc0c570c60c6d648 (patch) | |
tree | 7a3675dc92041606c721300464aa64266d631a31 /linux/drivers | |
parent | 101c5c95b326b076b662bd4d9c4c99182c1ad43f (diff) | |
download | mediapointer-dvb-s2-e0b7504caf309e3f34c1fecdfc0c570c60c6d648.tar.gz mediapointer-dvb-s2-e0b7504caf309e3f34c1fecdfc0c570c60c6d648.tar.bz2 |
V4L/DVB (em28xx): Add support for Pinnacle Dazzle DVC 100
From: Aurelien Jarno <aurelien@aurel32.net>
The patch below adds the "Pinnacle Dazzle DVC 100" to the list of
cards supported by the em28xx driver. As the configuration is the same
as the DVC 90 one, it simply adds a new USB ID to the list of devices
supported by the DVC 90 configuration.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-cards.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-cards.c b/linux/drivers/media/video/em28xx/em28xx-cards.c index 7bca01008..809cc0a4a 100644 --- a/linux/drivers/media/video/em28xx/em28xx-cards.c +++ b/linux/drivers/media/video/em28xx/em28xx-cards.c @@ -330,7 +330,7 @@ struct em28xx_board em28xx_boards[] = { } }, }, [EM2820_BOARD_PINNACLE_DVC_90] = { - .name = "Pinnacle Dazzle DVC 90", + .name = "Pinnacle Dazzle DVC 90/DVC 100", .vchannels = 3, .has_tuner = 0, .decoder = EM28XX_SAA7113, @@ -417,6 +417,8 @@ struct usb_device_id em28xx_id_table [] = { .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, { USB_DEVICE(0x2304, 0x0207), .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, + { USB_DEVICE(0x2304, 0x021a), + .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, { USB_DEVICE(0x2040, 0x6500), .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 }, { USB_DEVICE(0x2040, 0x6513), |