Commit 44f83144 authored by Manuel Schönlaub's avatar Manuel Schönlaub Committed by Mauro Carvalho Chehab

[media] az6027: Added the PID for a new revision of the Elgato EyeTV Sat DVB-S Tuner

There is another clone of AZ6027. This patch adds the relevant PID.
Signed-off-by: default avatarManuel Schönlaub <manuel.schoenlaub@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent afad82cc
...@@ -356,6 +356,7 @@ ...@@ -356,6 +356,7 @@
#define USB_PID_ELGATO_EYETV_DTT_2 0x003f #define USB_PID_ELGATO_EYETV_DTT_2 0x003f
#define USB_PID_ELGATO_EYETV_DTT_Dlx 0x0020 #define USB_PID_ELGATO_EYETV_DTT_Dlx 0x0020
#define USB_PID_ELGATO_EYETV_SAT 0x002a #define USB_PID_ELGATO_EYETV_SAT 0x002a
#define USB_PID_ELGATO_EYETV_SAT_V2 0x0025
#define USB_PID_DVB_T_USB_STICK_HIGH_SPEED_COLD 0x5000 #define USB_PID_DVB_T_USB_STICK_HIGH_SPEED_COLD 0x5000
#define USB_PID_DVB_T_USB_STICK_HIGH_SPEED_WARM 0x5001 #define USB_PID_DVB_T_USB_STICK_HIGH_SPEED_WARM 0x5001
#define USB_PID_FRIIO_WHITE 0x0001 #define USB_PID_FRIIO_WHITE 0x0001
......
...@@ -1088,6 +1088,7 @@ static struct usb_device_id az6027_usb_table[] = { ...@@ -1088,6 +1088,7 @@ static struct usb_device_id az6027_usb_table[] = {
{ USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_HDCI_V1) }, { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_HDCI_V1) },
{ USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_HDCI_V2) }, { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_HDCI_V2) },
{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_SAT) }, { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_SAT) },
{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_SAT_V2) },
{ }, { },
}; };
...@@ -1136,7 +1137,7 @@ static struct dvb_usb_device_properties az6027_properties = { ...@@ -1136,7 +1137,7 @@ static struct dvb_usb_device_properties az6027_properties = {
.i2c_algo = &az6027_i2c_algo, .i2c_algo = &az6027_i2c_algo,
.num_device_descs = 6, .num_device_descs = 7,
.devices = { .devices = {
{ {
.name = "AZUREWAVE DVB-S/S2 USB2.0 (AZ6027)", .name = "AZUREWAVE DVB-S/S2 USB2.0 (AZ6027)",
...@@ -1162,6 +1163,10 @@ static struct dvb_usb_device_properties az6027_properties = { ...@@ -1162,6 +1163,10 @@ static struct dvb_usb_device_properties az6027_properties = {
.name = "Elgato EyeTV Sat", .name = "Elgato EyeTV Sat",
.cold_ids = { &az6027_usb_table[5], NULL }, .cold_ids = { &az6027_usb_table[5], NULL },
.warm_ids = { NULL }, .warm_ids = { NULL },
}, {
.name = "Elgato EyeTV Sat",
.cold_ids = { &az6027_usb_table[6], NULL },
.warm_ids = { NULL },
}, },
{ NULL }, { NULL },
} }
......
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