diff options
author | Mike Isely <isely@pobox.com> | 2011-03-13 19:37:11 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 03:54:35 -0400 |
commit | 43823c02245a445b5669d43b1ec07b6d8ae710f5 (patch) | |
tree | 7d3c178483caba8a57726ee7cc9783da780e24a0 /drivers/media/video/pvrusb2/pvrusb2-devattr.c | |
parent | 34fd68bc03c8d656f991bd4f1646ec773179521b (diff) |
[media] pvrusb2: Implement support for Terratec Grabster AV400
Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-devattr.c')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-devattr.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-devattr.c b/drivers/media/video/pvrusb2/pvrusb2-devattr.c index 3092abfd66a2..e799331389b1 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-devattr.c +++ b/drivers/media/video/pvrusb2/pvrusb2-devattr.c | |||
@@ -157,6 +157,28 @@ static const struct pvr2_device_desc pvr2_device_gotview_2d = { | |||
157 | 157 | ||
158 | 158 | ||
159 | /*------------------------------------------------------------------------*/ | 159 | /*------------------------------------------------------------------------*/ |
160 | /* Terratec Grabster AV400 */ | ||
161 | |||
162 | static const struct pvr2_device_client_desc pvr2_cli_av400[] = { | ||
163 | { .module_id = PVR2_CLIENT_ID_CX25840 }, | ||
164 | }; | ||
165 | |||
166 | static const struct pvr2_device_desc pvr2_device_av400 = { | ||
167 | .description = "Terratec Grabster AV400", | ||
168 | .shortname = "av400", | ||
169 | .flag_is_experimental = 1, | ||
170 | .client_table.lst = pvr2_cli_av400, | ||
171 | .client_table.cnt = ARRAY_SIZE(pvr2_cli_av400), | ||
172 | .flag_has_cx25840 = !0, | ||
173 | .flag_has_analogtuner = 0, | ||
174 | .flag_has_composite = !0, | ||
175 | .flag_has_svideo = !0, | ||
176 | .signal_routing_scheme = PVR2_ROUTING_SCHEME_AV400, | ||
177 | }; | ||
178 | |||
179 | |||
180 | |||
181 | /*------------------------------------------------------------------------*/ | ||
160 | /* OnAir Creator */ | 182 | /* OnAir Creator */ |
161 | 183 | ||
162 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB | 184 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB |
@@ -517,6 +539,8 @@ struct usb_device_id pvr2_device_table[] = { | |||
517 | .driver_info = (kernel_ulong_t)&pvr2_device_750xx}, | 539 | .driver_info = (kernel_ulong_t)&pvr2_device_750xx}, |
518 | { USB_DEVICE(0x2040, 0x7501), | 540 | { USB_DEVICE(0x2040, 0x7501), |
519 | .driver_info = (kernel_ulong_t)&pvr2_device_751xx}, | 541 | .driver_info = (kernel_ulong_t)&pvr2_device_751xx}, |
542 | { USB_DEVICE(0x0ccd, 0x0039), | ||
543 | .driver_info = (kernel_ulong_t)&pvr2_device_av400}, | ||
520 | { } | 544 | { } |
521 | }; | 545 | }; |
522 | 546 | ||