forked from Minki/linux
V4L/DVB (4802): Cx88: fix remote control on WinFast 2000XP Expert
fix remote control on WinFast 2000XP Expert by setting timing back to 1 ms, like it was in the original patch by Robert Reid. Signed-off-by: Hermann Pitton <hermann-pitton@arcor.de> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
d027c4dc7d
commit
ff97d93d6a
@ -202,13 +202,19 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
|
||||
ir->sampling = 1;
|
||||
break;
|
||||
case CX88_BOARD_WINFAST_DTV2000H:
|
||||
case CX88_BOARD_WINFAST2000XP_EXPERT:
|
||||
ir_codes = ir_codes_winfast;
|
||||
ir->gpio_addr = MO_GP0_IO;
|
||||
ir->mask_keycode = 0x8f8;
|
||||
ir->mask_keyup = 0x100;
|
||||
ir->polling = 50; /* ms */
|
||||
break;
|
||||
case CX88_BOARD_WINFAST2000XP_EXPERT:
|
||||
ir_codes = ir_codes_winfast;
|
||||
ir->gpio_addr = MO_GP0_IO;
|
||||
ir->mask_keycode = 0x8f8;
|
||||
ir->mask_keyup = 0x100;
|
||||
ir->polling = 1; /* ms */
|
||||
break;
|
||||
case CX88_BOARD_IODATA_GVBCTV7E:
|
||||
ir_codes = ir_codes_iodata_bctv7e;
|
||||
ir->gpio_addr = MO_GP0_IO;
|
||||
@ -216,7 +222,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
|
||||
ir->mask_keydown = 0x02;
|
||||
ir->polling = 5; /* ms */
|
||||
break;
|
||||
case CX88_BOARD_PROLINK_PLAYTVPVR:
|
||||
case CX88_BOARD_PROLINK_PLAYTVPVR:
|
||||
case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
|
||||
ir_codes = ir_codes_pixelview;
|
||||
ir->gpio_addr = MO_GP1_IO;
|
||||
|
Loading…
Reference in New Issue
Block a user