Commit 1083a0f9 authored by Michael Büsch's avatar Michael Büsch Committed by Mauro Carvalho Chehab

[media] af9035: Add Afatech USB PIDs

Add some generic Afatech USB PIDs used by "Cabstone" sticks and others.
Signed-off-by: default avatarMichael Buesch <m@bues.ch>
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ffc501f6
...@@ -738,11 +738,17 @@ static int af9035_tuner_attach(struct dvb_usb_adapter *adap) ...@@ -738,11 +738,17 @@ static int af9035_tuner_attach(struct dvb_usb_adapter *adap)
enum af9035_id_entry { enum af9035_id_entry {
AF9035_0CCD_0093, AF9035_0CCD_0093,
AF9035_15A4_9035,
AF9035_15A4_1001,
}; };
static struct usb_device_id af9035_id[] = { static struct usb_device_id af9035_id[] = {
[AF9035_0CCD_0093] = { [AF9035_0CCD_0093] = {
USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK)}, USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK)},
[AF9035_15A4_9035] = {
USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035)},
[AF9035_15A4_1001] = {
USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_2)},
{}, {},
}; };
...@@ -785,15 +791,21 @@ static struct dvb_usb_device_properties af9035_properties[] = { ...@@ -785,15 +791,21 @@ static struct dvb_usb_device_properties af9035_properties[] = {
.i2c_algo = &af9035_i2c_algo, .i2c_algo = &af9035_i2c_algo,
.num_device_descs = 1, .num_device_descs = 2,
.devices = { .devices = {
{ {
.name = "TerraTec Cinergy T Stick", .name = "TerraTec Cinergy T Stick",
.cold_ids = { .cold_ids = {
&af9035_id[AF9035_0CCD_0093], &af9035_id[AF9035_0CCD_0093],
}, },
}, {
.name = "Afatech Technologies DVB-T stick",
.cold_ids = {
&af9035_id[AF9035_15A4_9035],
&af9035_id[AF9035_15A4_1001],
}, },
} }
}
}, },
}; };
......
...@@ -76,6 +76,8 @@ ...@@ -76,6 +76,8 @@
#define USB_PID_AFATECH_AF9005 0x9020 #define USB_PID_AFATECH_AF9005 0x9020
#define USB_PID_AFATECH_AF9015_9015 0x9015 #define USB_PID_AFATECH_AF9015_9015 0x9015
#define USB_PID_AFATECH_AF9015_9016 0x9016 #define USB_PID_AFATECH_AF9015_9016 0x9016
#define USB_PID_AFATECH_AF9035 0x9035
#define USB_PID_AFATECH_AF9035_2 0x1001
#define USB_PID_TREKSTOR_DVBT 0x901b #define USB_PID_TREKSTOR_DVBT 0x901b
#define USB_VID_ALINK_DTU 0xf170 #define USB_VID_ALINK_DTU 0xf170
#define USB_PID_ANSONIC_DVBT_USB 0x6000 #define USB_PID_ANSONIC_DVBT_USB 0x6000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment