aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorIgor M. Liplianin <liplianin@me.by>2011-02-25 16:41:22 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-21 19:32:25 -0400
commit2adc591fb7764bf70f65a5923ff50c1c1b671c20 (patch)
treedce13d52279b05651ce259dba7f51d5ef0e1ea87 /drivers/media/dvb
parentd2ffc447cabb3a497d7f413403abd8793b348329 (diff)
[media] dw2102: Add Terratec Cinergy S2 USB HD
MarkusF wrote: I accidently got a Terratec Cinergy S2 USB HD (instead of a Terratec Cinergy S2 PCI HD). I found in the windows driver, that the driver is for the usb ids: 0CCD:00A8 1F4D:3000 The dvb-s2 usb adapter has the id 0CCD-00A8. So I patches your driver and added the usb id, where the 1F4D:3000 is and it worked (after I downloaded the firmware dvb-fe-ds3000.fw). w_scan found the channels and vdr is working fine. Signed-off-by: Igor M. Liplianin <liplianin@me.by> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/dvb-usb/dw2102.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/dw2102.c b/drivers/media/dvb/dvb-usb/dw2102.c
index 461c96a816d7..57af4c17d54f 100644
--- a/drivers/media/dvb/dvb-usb/dw2102.c
+++ b/drivers/media/dvb/dvb-usb/dw2102.c
@@ -1370,6 +1370,7 @@ static struct usb_device_id dw2102_table[] = {
1370 {USB_DEVICE(0x9022, USB_PID_TEVII_S660)}, 1370 {USB_DEVICE(0x9022, USB_PID_TEVII_S660)},
1371 {USB_DEVICE(0x3034, 0x7500)}, 1371 {USB_DEVICE(0x3034, 0x7500)},
1372 {USB_DEVICE(0x1f4d, 0x3000)}, 1372 {USB_DEVICE(0x1f4d, 0x3000)},
1373 {USB_DEVICE(USB_VID_TERRATEC, 0x00a8)},
1373 { } 1374 { }
1374}; 1375};
1375 1376
@@ -1742,12 +1743,16 @@ static struct dvb_usb_device_properties su3000_properties = {
1742 } 1743 }
1743 } 1744 }
1744 }, 1745 },
1745 .num_device_descs = 1, 1746 .num_device_descs = 2,
1746 .devices = { 1747 .devices = {
1747 { "SU3000HD DVB-S USB2.0", 1748 { "SU3000HD DVB-S USB2.0",
1748 { &dw2102_table[10], NULL }, 1749 { &dw2102_table[10], NULL },
1749 { NULL }, 1750 { NULL },
1750 }, 1751 },
1752 { "Terratec Cinergy S2 USB HD",
1753 { &dw2102_table[11], NULL },
1754 { NULL },
1755 },
1751 } 1756 }
1752}; 1757};
1753 1758