mirror of https://gitee.com/openkylin/linux.git
V4L/DVB (5958): Add support Compro VideoMate 500 with DiB7000PC
Add support Compro VideoMate 500 with DiB7000PC. Another design of Compro uses the DiB7000PC and it has new USB ids. Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
7161f27f2e
commit
1f8ca4b373
|
@ -818,6 +818,7 @@ struct usb_device_id dib0700_usb_id_table[] = {
|
||||||
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DVB_T_FLASH) },
|
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DVB_T_FLASH) },
|
||||||
{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070PD) },
|
{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070PD) },
|
||||||
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DUAL_DIVERSITY_DVB_T) },
|
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DUAL_DIVERSITY_DVB_T) },
|
||||||
|
{ USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500_PC) },
|
||||||
{ 0 } /* Terminating entry */
|
{ 0 } /* Terminating entry */
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
|
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
|
||||||
|
@ -874,7 +875,7 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||||
{ NULL },
|
{ NULL },
|
||||||
},
|
},
|
||||||
{ "Compro Videomate U500",
|
{ "Compro Videomate U500",
|
||||||
{ &dib0700_usb_id_table[6], NULL },
|
{ &dib0700_usb_id_table[6], &dib0700_usb_id_table[19] },
|
||||||
{ NULL },
|
{ NULL },
|
||||||
},
|
},
|
||||||
{ "Uniwill STK7700P based (Hama and others)",
|
{ "Uniwill STK7700P based (Hama and others)",
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
#define USB_PID_COMPRO_DVBU2000_UNK_COLD 0x010c
|
#define USB_PID_COMPRO_DVBU2000_UNK_COLD 0x010c
|
||||||
#define USB_PID_COMPRO_DVBU2000_UNK_WARM 0x010d
|
#define USB_PID_COMPRO_DVBU2000_UNK_WARM 0x010d
|
||||||
#define USB_PID_COMPRO_VIDEOMATE_U500 0x1e78
|
#define USB_PID_COMPRO_VIDEOMATE_U500 0x1e78
|
||||||
|
#define USB_PID_COMPRO_VIDEOMATE_U500_PC 0x1e80
|
||||||
#define USB_PID_DIBCOM_HOOK_DEFAULT 0x0064
|
#define USB_PID_DIBCOM_HOOK_DEFAULT 0x0064
|
||||||
#define USB_PID_DIBCOM_HOOK_DEFAULT_REENUM 0x0065
|
#define USB_PID_DIBCOM_HOOK_DEFAULT_REENUM 0x0065
|
||||||
#define USB_PID_DIBCOM_MOD3000_COLD 0x0bb8
|
#define USB_PID_DIBCOM_MOD3000_COLD 0x0bb8
|
||||||
|
|
Loading…
Reference in New Issue