diff options
Diffstat (limited to 'drivers/media/video/cx88/cx88-input.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-input.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c index bb0911b4d2f6..53526d997a4e 100644 --- a/drivers/media/video/cx88/cx88-input.c +++ b/drivers/media/video/cx88/cx88-input.c | |||
@@ -57,7 +57,7 @@ struct cx88_IR { | |||
57 | u32 mask_keyup; | 57 | u32 mask_keyup; |
58 | }; | 58 | }; |
59 | 59 | ||
60 | static int ir_debug = 0; | 60 | static int ir_debug; |
61 | module_param(ir_debug, int, 0644); /* debug level [IR] */ | 61 | module_param(ir_debug, int, 0644); /* debug level [IR] */ |
62 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); | 62 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
63 | 63 | ||
@@ -258,6 +258,13 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
258 | ir->mask_keyup = 0x80; | 258 | ir->mask_keyup = 0x80; |
259 | ir->polling = 1; /* ms */ | 259 | ir->polling = 1; /* ms */ |
260 | break; | 260 | break; |
261 | case CX88_BOARD_PROLINK_PV_8000GT: | ||
262 | ir_codes = ir_codes_pixelview_new; | ||
263 | ir->gpio_addr = MO_GP1_IO; | ||
264 | ir->mask_keycode = 0x3f; | ||
265 | ir->mask_keyup = 0x80; | ||
266 | ir->polling = 1; /* ms */ | ||
267 | break; | ||
261 | case CX88_BOARD_KWORLD_LTV883: | 268 | case CX88_BOARD_KWORLD_LTV883: |
262 | ir_codes = ir_codes_pixelview; | 269 | ir_codes = ir_codes_pixelview; |
263 | ir->gpio_addr = MO_GP1_IO; | 270 | ir->gpio_addr = MO_GP1_IO; |
@@ -310,6 +317,12 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
310 | ir_type = IR_TYPE_RC5; | 317 | ir_type = IR_TYPE_RC5; |
311 | ir->sampling = 1; | 318 | ir->sampling = 1; |
312 | break; | 319 | break; |
320 | case CX88_BOARD_POWERCOLOR_REAL_ANGEL: | ||
321 | ir_codes = ir_codes_powercolor_real_angel; | ||
322 | ir->gpio_addr = MO_GP2_IO; | ||
323 | ir->mask_keycode = 0x7e; | ||
324 | ir->polling = 100; /* ms */ | ||
325 | break; | ||
313 | } | 326 | } |
314 | 327 | ||
315 | if (NULL == ir_codes) { | 328 | if (NULL == ir_codes) { |