aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-usb/dib0700_devices.c
diff options
context:
space:
mode:
authortomas petr <tom-petr@seznam.cz>2009-05-20 04:28:05 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 17:21:09 -0400
commitf0f4ae763b3dc04de3745a75c3518925d1b8325e (patch)
tree084e2ec27a0d963a0115988de3d9d20c89d145ea /drivers/media/dvb/dvb-usb/dib0700_devices.c
parentd66b94b4aa2f40e134f8c07c58ae74ef3d523ee0 (diff)
V4L/DVB (11830): dib0700: add support for Leadtek WinFast DTV Dongle H
"Leadtek WinFast DTV Dongle H" is a hybrid digital/analog USB-stick TV receiver. The code below allows the digital part to work with dvb_usb in linux. Signed-off-by: tomas petr <tom-petr@seznam.cz> Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/dib0700_devices.c')
-rw-r--r--drivers/media/dvb/dvb-usb/dib0700_devices.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/dib0700_devices.c b/drivers/media/dvb/dvb-usb/dib0700_devices.c
index dc6cae14f12f..b208f249a3a9 100644
--- a/drivers/media/dvb/dvb-usb/dib0700_devices.c
+++ b/drivers/media/dvb/dvb-usb/dib0700_devices.c
@@ -1494,6 +1494,7 @@ struct usb_device_id dib0700_usb_id_table[] = {
1494 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_MC770) }, 1494 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_MC770) },
1495 { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT) }, 1495 { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT) },
1496/* 50 */{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT_Dlx) }, 1496/* 50 */{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT_Dlx) },
1497 { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_H) },
1497 { 0 } /* Terminating entry */ 1498 { 0 } /* Terminating entry */
1498}; 1499};
1499MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); 1500MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
@@ -1817,7 +1818,7 @@ struct dvb_usb_device_properties dib0700_devices[] = {
1817 }, 1818 },
1818 }, 1819 },
1819 1820
1820 .num_device_descs = 7, 1821 .num_device_descs = 8,
1821 .devices = { 1822 .devices = {
1822 { "Terratec Cinergy HT USB XE", 1823 { "Terratec Cinergy HT USB XE",
1823 { &dib0700_usb_id_table[27], NULL }, 1824 { &dib0700_usb_id_table[27], NULL },
@@ -1847,6 +1848,11 @@ struct dvb_usb_device_properties dib0700_devices[] = {
1847 { &dib0700_usb_id_table[48], NULL }, 1848 { &dib0700_usb_id_table[48], NULL },
1848 { NULL }, 1849 { NULL },
1849 }, 1850 },
1851 { "Leadtek WinFast DTV Dongle H",
1852 { &dib0700_usb_id_table[51], NULL },
1853 { NULL },
1854 },
1855
1850 }, 1856 },
1851 .rc_interval = DEFAULT_RC_INTERVAL, 1857 .rc_interval = DEFAULT_RC_INTERVAL,
1852 .rc_key_map = dib0700_rc_keys, 1858 .rc_key_map = dib0700_rc_keys,