diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2011-11-06 16:30:26 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-11-08 08:37:41 -0500 |
commit | fdb5a9111ef77d537efb86e90e8073ebfd0b553e (patch) | |
tree | 5e6a51fb1a6d2882c5428655df53854ce6aa7b0d /drivers/media/dvb/dvb-usb/it913x.c | |
parent | 34490a0a3dfd9c048abc5b9a3ce86fb0fbf881cf (diff) |
[media] Support for Sveon STV22 (IT9137)
This indeed a clone of Kworld UB499 2T
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/it913x.c')
-rw-r--r-- | drivers/media/dvb/dvb-usb/it913x.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/it913x.c b/drivers/media/dvb/dvb-usb/it913x.c index 9f582411e7d3..9abdaee4aa6c 100644 --- a/drivers/media/dvb/dvb-usb/it913x.c +++ b/drivers/media/dvb/dvb-usb/it913x.c | |||
@@ -577,6 +577,7 @@ static int it913x_probe(struct usb_interface *intf, | |||
577 | static struct usb_device_id it913x_table[] = { | 577 | static struct usb_device_id it913x_table[] = { |
578 | { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB499_2T_T09) }, | 578 | { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB499_2T_T09) }, |
579 | { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135) }, | 579 | { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135) }, |
580 | { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV22_IT9137) }, | ||
580 | {} /* Terminating entry */ | 581 | {} /* Terminating entry */ |
581 | }; | 582 | }; |
582 | 583 | ||
@@ -652,7 +653,7 @@ static struct dvb_usb_device_properties it913x_properties = { | |||
652 | .rc_codes = RC_MAP_KWORLD_315U, | 653 | .rc_codes = RC_MAP_KWORLD_315U, |
653 | }, | 654 | }, |
654 | .i2c_algo = &it913x_i2c_algo, | 655 | .i2c_algo = &it913x_i2c_algo, |
655 | .num_device_descs = 2, | 656 | .num_device_descs = 3, |
656 | .devices = { | 657 | .devices = { |
657 | { "Kworld UB499-2T T09(IT9137)", | 658 | { "Kworld UB499-2T T09(IT9137)", |
658 | { &it913x_table[0], NULL }, | 659 | { &it913x_table[0], NULL }, |
@@ -660,6 +661,9 @@ static struct dvb_usb_device_properties it913x_properties = { | |||
660 | { "ITE 9135 Generic", | 661 | { "ITE 9135 Generic", |
661 | { &it913x_table[1], NULL }, | 662 | { &it913x_table[1], NULL }, |
662 | }, | 663 | }, |
664 | { "Sveon STV22 Dual DVB-T HDTV(IT9137)", | ||
665 | { &it913x_table[2], NULL }, | ||
666 | }, | ||
663 | } | 667 | } |
664 | }; | 668 | }; |
665 | 669 | ||