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>

authored by Hermann Pitton and committed by Mauro Carvalho Chehab ff97d93d d027c4dc

+8 -2
+8 -2
drivers/media/video/cx88/cx88-input.c
··· 202 202 ir->sampling = 1; 203 203 break; 204 204 case CX88_BOARD_WINFAST_DTV2000H: 205 - case CX88_BOARD_WINFAST2000XP_EXPERT: 206 205 ir_codes = ir_codes_winfast; 207 206 ir->gpio_addr = MO_GP0_IO; 208 207 ir->mask_keycode = 0x8f8; 209 208 ir->mask_keyup = 0x100; 210 209 ir->polling = 50; /* ms */ 210 + break; 211 + case CX88_BOARD_WINFAST2000XP_EXPERT: 212 + ir_codes = ir_codes_winfast; 213 + ir->gpio_addr = MO_GP0_IO; 214 + ir->mask_keycode = 0x8f8; 215 + ir->mask_keyup = 0x100; 216 + ir->polling = 1; /* ms */ 211 217 break; 212 218 case CX88_BOARD_IODATA_GVBCTV7E: 213 219 ir_codes = ir_codes_iodata_bctv7e; ··· 222 216 ir->mask_keydown = 0x02; 223 217 ir->polling = 5; /* ms */ 224 218 break; 225 - case CX88_BOARD_PROLINK_PLAYTVPVR: 219 + case CX88_BOARD_PROLINK_PLAYTVPVR: 226 220 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: 227 221 ir_codes = ir_codes_pixelview; 228 222 ir->gpio_addr = MO_GP1_IO;