aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-02-09 08:04:06 -0500
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-02-24 08:45:08 -0500
commit37973e01d1c3ddd69982907c68312bb314d2398f (patch)
tree6164295e8369388ca9e4f808f21ebe046cced81f
parenta1310ff4c438bbdbd76dda5cbc27cc108d08d1c1 (diff)
[media] af9035: Add remaining it913x dual ids to af9035
As follow on to patch af9035: Move it913x single devices to af9035 and patch 1. SNR is reported as db/10 values. All dual ids are added to af9035 and it913x driver disabled. it913x/it913x-fe removal patches to follow. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/media/usb/dvb-usb-v2/af9035.c8
-rw-r--r--drivers/media/usb/dvb-usb-v2/it913x.c5
2 files changed, 13 insertions, 0 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/af9035.c b/drivers/media/usb/dvb-usb-v2/af9035.c
index 4f682ad97bc2..49e836060964 100644
--- a/drivers/media/usb/dvb-usb-v2/af9035.c
+++ b/drivers/media/usb/dvb-usb-v2/af9035.c
@@ -1552,6 +1552,14 @@ static const struct usb_device_id af9035_id_table[] = {
1552 &af9035_props, "Avermedia A835B(4835)", RC_MAP_IT913X_V2) }, 1552 &af9035_props, "Avermedia A835B(4835)", RC_MAP_IT913X_V2) },
1553 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_H335, 1553 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_H335,
1554 &af9035_props, "Avermedia H335", RC_MAP_IT913X_V2) }, 1554 &af9035_props, "Avermedia H335", RC_MAP_IT913X_V2) },
1555 { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB499_2T_T09,
1556 &af9035_props, "Kworld UB499-2T T09", RC_MAP_IT913X_V1) },
1557 { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV22_IT9137,
1558 &af9035_props, "Sveon STV22 Dual DVB-T HDTV",
1559 RC_MAP_IT913X_V1) },
1560 { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_CTVDIGDUAL_V2,
1561 &af9035_props, "Digital Dual TV Receiver CTVDIGDUAL_V2",
1562 RC_MAP_IT913X_V1) },
1555 /* XXX: that same ID [0ccd:0099] is used by af9015 driver too */ 1563 /* XXX: that same ID [0ccd:0099] is used by af9015 driver too */
1556 { DVB_USB_DEVICE(USB_VID_TERRATEC, 0x0099, 1564 { DVB_USB_DEVICE(USB_VID_TERRATEC, 0x0099,
1557 &af9035_props, "TerraTec Cinergy T Stick Dual RC (rev. 2)", NULL) }, 1565 &af9035_props, "TerraTec Cinergy T Stick Dual RC (rev. 2)", NULL) },
diff --git a/drivers/media/usb/dvb-usb-v2/it913x.c b/drivers/media/usb/dvb-usb-v2/it913x.c
index 78bf8fdce8b3..39488f8b6738 100644
--- a/drivers/media/usb/dvb-usb-v2/it913x.c
+++ b/drivers/media/usb/dvb-usb-v2/it913x.c
@@ -781,6 +781,8 @@ static const struct usb_device_id it913x_id_table[] = {
781 {} /* Terminating entry */ 781 {} /* Terminating entry */
782}; 782};
783 783
784#if 0
785
784MODULE_DEVICE_TABLE(usb, it913x_id_table); 786MODULE_DEVICE_TABLE(usb, it913x_id_table);
785 787
786static struct usb_driver it913x_driver = { 788static struct usb_driver it913x_driver = {
@@ -792,8 +794,11 @@ static struct usb_driver it913x_driver = {
792 .id_table = it913x_id_table, 794 .id_table = it913x_id_table,
793}; 795};
794 796
797
795module_usb_driver(it913x_driver); 798module_usb_driver(it913x_driver);
796 799
800#endif
801
797MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>"); 802MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>");
798MODULE_DESCRIPTION("it913x USB 2 Driver"); 803MODULE_DESCRIPTION("it913x USB 2 Driver");
799MODULE_VERSION("1.33"); 804MODULE_VERSION("1.33");