diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2009-03-29 14:12:06 +0200 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2009-03-29 14:12:06 +0200 |
commit | df3d6b341372341ba57dc1ea30ef6059bc24d088 (patch) | |
tree | 87ec01905c56e15a227f0dc2f4fa4dc53358284f /linux/drivers/media/dvb/dvb-usb/dib0700_devices.c | |
parent | ad5e78a7b1caf2e54f4ca0f3009152c4aaa03837 (diff) | |
download | mediapointer-dvb-s2-df3d6b341372341ba57dc1ea30ef6059bc24d088.tar.gz mediapointer-dvb-s2-df3d6b341372341ba57dc1ea30ef6059bc24d088.tar.bz2 |
Add Elgato EyeTV DTT to dibcom driver
From: Klaus Flittner <klaus@flittner.org>
This patch introduces support for DVB-T for the following dibcom based card:
Elgato EyeTV DTT (USB-ID: 0fd9:0021)
Priority: normal
Signed-off-by: Klaus Flittner <klaus@flittner.org>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb/dib0700_devices.c')
-rw-r--r-- | linux/drivers/media/dvb/dvb-usb/dib0700_devices.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c index f0f98529d..31fe6e10a 100644 --- a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c +++ b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c @@ -1496,6 +1496,7 @@ struct usb_device_id dib0700_usb_id_table[] = { { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_TIGER_ATSC) }, { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_TIGER_ATSC_B210) }, { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_MC770) }, + { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT) }, { 0 } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); @@ -1695,7 +1696,7 @@ struct dvb_usb_device_properties dib0700_devices[] = { }, }, - .num_device_descs = 10, + .num_device_descs = 11, .devices = { { "DiBcom STK7070P reference design", { &dib0700_usb_id_table[15], NULL }, @@ -1733,6 +1734,10 @@ struct dvb_usb_device_properties dib0700_devices[] = { { &dib0700_usb_id_table[33], NULL }, { NULL }, }, + { "Elgato EyeTV DTT", + { &dib0700_usb_id_table[49], NULL }, + { NULL }, + }, { "Yuan PD378S", { &dib0700_usb_id_table[45], NULL }, { NULL }, |