Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] dib0700: add support for PCTV 2002e & PCTV 2002e SE

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>

authored by

Michael Krufky and committed by
Mauro Carvalho Chehab
c859e6ef 566c1d0a

+13 -1
+2
drivers/media/dvb-core/dvb-usb-ids.h
··· 369 369 #define USB_PID_TECHNISAT_USB2_DVB_S2 0x0500 370 370 #define USB_PID_CPYTO_REDI_PC50A 0xa803 371 371 #define USB_PID_CTVDIGDUAL_V2 0xe410 372 + #define USB_PID_PCTV_2002E 0x025c 373 + #define USB_PID_PCTV_2002E_SE 0x025d 372 374 #endif
+11 -1
drivers/media/usb/dvb-usb/dib0700_devices.c
··· 3589 3589 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE7790P) }, 3590 3590 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE8096P) }, 3591 3591 /* 80 */{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT_2) }, 3592 + { USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_2002E) }, 3593 + { USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_2002E_SE) }, 3592 3594 { 0 } /* Terminating entry */ 3593 3595 }; 3594 3596 MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); ··· 3995 3993 } 3996 3994 }, 3997 3995 3998 - .num_device_descs = 1, 3996 + .num_device_descs = 3, 3999 3997 .devices = { 4000 3998 { "Hauppauge Nova-TD Stick (52009)", 4001 3999 { &dib0700_usb_id_table[35], NULL }, 4000 + { NULL }, 4001 + }, 4002 + { "PCTV 2002e", 4003 + { &dib0700_usb_id_table[81], NULL }, 4004 + { NULL }, 4005 + }, 4006 + { "PCTV 2002e SE", 4007 + { &dib0700_usb_id_table[82], NULL }, 4002 4008 { NULL }, 4003 4009 }, 4004 4010 },