Skip to content

Commit b675c05

Browse files
Mike IselyMauro Carvalho Chehab
authored andcommitted
V4L/DVB (8892): pvrusb2: Handle USB ID 2040:2950 same as 2040:2900
The device 2040:2950 is a really old variant of the PVR USB2 hardware. I have just learned of its existence. For the purposes of the pvrusb2 driver, it is functionally identical to the well known 29xxx series (2040:2900). Amazing that this went undetected for 3+ years. Signed-off-by: Mike Isely <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent adf8c02 commit b675c05

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/media/video/pvrusb2/pvrusb2-devattr.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,8 @@ static const struct pvr2_device_desc pvr2_device_751xx = {
489489
struct usb_device_id pvr2_device_table[] = {
490490
{ USB_DEVICE(0x2040, 0x2900),
491491
.driver_info = (kernel_ulong_t)&pvr2_device_29xxx},
492+
{ USB_DEVICE(0x2040, 0x2950), /* Logically identical to 2900 */
493+
.driver_info = (kernel_ulong_t)&pvr2_device_29xxx},
492494
{ USB_DEVICE(0x2040, 0x2400),
493495
.driver_info = (kernel_ulong_t)&pvr2_device_24xxx},
494496
{ USB_DEVICE(0x1164, 0x0622),

0 commit comments

Comments
 (0)