diff options
Diffstat (limited to 'drivers/media/usb/dvb-usb/az6027.c')
| -rw-r--r-- | drivers/media/usb/dvb-usb/az6027.c | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/media/usb/dvb-usb/az6027.c b/drivers/media/usb/dvb-usb/az6027.c index ea2d5ee8657..0df52ab32a7 100644 --- a/drivers/media/usb/dvb-usb/az6027.c +++ b/drivers/media/usb/dvb-usb/az6027.c @@ -254,7 +254,7 @@ static const struct stb0899_s1_reg az6027_stb0899_s1_init_3[] = { -struct stb0899_config az6027_stb0899_config = { +static struct stb0899_config az6027_stb0899_config = {  	.init_dev		= az6027_stb0899_s1_init_1,  	.init_s2_demod		= stb0899_s2_init_2,  	.init_s1_demod		= az6027_stb0899_s1_init_3, @@ -291,7 +291,7 @@ struct stb0899_config az6027_stb0899_config = {  	.tuner_set_rfsiggain	= NULL,  }; -struct stb6100_config az6027_stb6100_config = { +static struct stb6100_config az6027_stb6100_config = {  	.tuner_address	= 0xc0,  	.refclock	= 27000000,  }; @@ -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_V2) },  	{ 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 = {  	.i2c_algo         = &az6027_i2c_algo, -	.num_device_descs = 6, +	.num_device_descs = 7,  	.devices = {  		{  			.name = "AZUREWAVE DVB-S/S2 USB2.0 (AZ6027)", @@ -1162,6 +1163,10 @@ static struct dvb_usb_device_properties az6027_properties = {  			.name = "Elgato EyeTV Sat",  			.cold_ids = { &az6027_usb_table[5], NULL },  			.warm_ids = { NULL }, +		}, { +			.name = "Elgato EyeTV Sat", +			.cold_ids = { &az6027_usb_table[6], NULL }, +			.warm_ids = { NULL },  		},  		{ NULL },  	}  | 
