diff options
author | Antti Palosaari <crope@iki.fi> | 2010-09-09 16:38:28 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:05:52 -0400 |
commit | 2ec01b41e3e06bd22d8f6c7f330605b554e9b121 (patch) | |
tree | a0f0730a955a4963bd01180a873c461696773d99 /drivers/media/dvb | |
parent | 86dcab644575693fac3552ba4a0d20b88ad43656 (diff) |
V4L/DVB: af9015: map TerraTec Cinergy T Stick Dual RC remote to device ID
Detect TerraTec Cinergy T Stick Dual RC remote config using device
USB ID instead of device EEPROM hash. It was found that there is
devices with slightly different EEPROM content...
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/dvb-usb/af9015.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/dvb-usb/af9015.c b/drivers/media/dvb/dvb-usb/af9015.c index cb4b62a0fb44..bf6ff2bb95c5 100644 --- a/drivers/media/dvb/dvb-usb/af9015.c +++ b/drivers/media/dvb/dvb-usb/af9015.c | |||
@@ -788,6 +788,9 @@ static const struct af9015_setup af9015_setup_usbids[] = { | |||
788 | { USB_VID_MSI_2, | 788 | { USB_VID_MSI_2, |
789 | ir_codes_af9015_table_msi_digivox_iii, ARRAY_SIZE(ir_codes_af9015_table_msi_digivox_iii), | 789 | ir_codes_af9015_table_msi_digivox_iii, ARRAY_SIZE(ir_codes_af9015_table_msi_digivox_iii), |
790 | af9015_ir_table_msi_digivox_iii, ARRAY_SIZE(af9015_ir_table_msi_digivox_iii) }, | 790 | af9015_ir_table_msi_digivox_iii, ARRAY_SIZE(af9015_ir_table_msi_digivox_iii) }, |
791 | { USB_VID_TERRATEC, | ||
792 | ir_codes_terratec, ARRAY_SIZE(ir_codes_terratec), | ||
793 | af9015_ir_terratec, ARRAY_SIZE(af9015_ir_terratec) }, | ||
791 | { } | 794 | { } |
792 | }; | 795 | }; |
793 | 796 | ||
@@ -801,9 +804,6 @@ static const struct af9015_setup af9015_setup_hashes[] = { | |||
801 | { 0x9b7dc64e, | 804 | { 0x9b7dc64e, |
802 | ir_codes_af9015_table_mygictv, ARRAY_SIZE(ir_codes_af9015_table_mygictv), | 805 | ir_codes_af9015_table_mygictv, ARRAY_SIZE(ir_codes_af9015_table_mygictv), |
803 | af9015_ir_table_mygictv, ARRAY_SIZE(af9015_ir_table_mygictv) }, | 806 | af9015_ir_table_mygictv, ARRAY_SIZE(af9015_ir_table_mygictv) }, |
804 | { 0x14e89ffe, | ||
805 | ir_codes_terratec, ARRAY_SIZE(ir_codes_terratec), | ||
806 | af9015_ir_terratec, ARRAY_SIZE(af9015_ir_terratec) }, | ||
807 | { } | 807 | { } |
808 | }; | 808 | }; |
809 | 809 | ||