aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-01-24 10:18:48 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-22 18:24:16 -0400
commitaf86ce79f020a31e4a30661e41471d31face9985 (patch)
tree69d247738a06aa4c0bf176f1e1bed9a79cd11790 /drivers/media/video/cx88
parent15195d3a83b59f0ca3bed52cbe5524042ce13fd6 (diff)
[media] remove the old RC_MAP_HAUPPAUGE_NEW RC map
The rc-hauppauge-new map is a messy thing, as it bundles 3 different remote controllers as if they were just one, discarding the address byte. Also, some key maps are wrong. With the conversion to the new rc-core, it is likely that most of the devices won't be working properly, as the i2c driver and the raw decoders are now providing 16 bits for the remote, instead of just 8. delete mode 100644 drivers/media/rc/keymaps/rc-hauppauge-new.c Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Jarod Wilson <jarod@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r--drivers/media/video/cx88/cx88-input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c
index fbfbba5bec5e..c820e2f53527 100644
--- a/drivers/media/video/cx88/cx88-input.c
+++ b/drivers/media/video/cx88/cx88-input.c
@@ -283,7 +283,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
283 case CX88_BOARD_PCHDTV_HD3000: 283 case CX88_BOARD_PCHDTV_HD3000:
284 case CX88_BOARD_PCHDTV_HD5500: 284 case CX88_BOARD_PCHDTV_HD5500:
285 case CX88_BOARD_HAUPPAUGE_IRONLY: 285 case CX88_BOARD_HAUPPAUGE_IRONLY:
286 ir_codes = RC_MAP_HAUPPAUGE_NEW; 286 ir_codes = RC_MAP_HAUPPAUGE;
287 ir->sampling = 1; 287 ir->sampling = 1;
288 break; 288 break;
289 case CX88_BOARD_WINFAST_DTV2000H: 289 case CX88_BOARD_WINFAST_DTV2000H:
@@ -604,7 +604,7 @@ void cx88_i2c_init_ir(struct cx88_core *core)
604 if (*addrp == 0x71) { 604 if (*addrp == 0x71) {
605 /* Hauppauge XVR */ 605 /* Hauppauge XVR */
606 core->init_data.name = "cx88 Hauppauge XVR remote"; 606 core->init_data.name = "cx88 Hauppauge XVR remote";
607 core->init_data.ir_codes = RC_MAP_HAUPPAUGE_NEW; 607 core->init_data.ir_codes = RC_MAP_HAUPPAUGE;
608 core->init_data.type = RC_TYPE_RC5; 608 core->init_data.type = RC_TYPE_RC5;
609 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR; 609 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
610 610