diff options
author | Steven Toth <stoth@hauppauge.com> | 2006-01-09 12:25:02 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:25:02 -0500 |
commit | fb56cb65e4b737c93727ea296050e8d24eb7cb42 (patch) | |
tree | 0bd147b17c0ce44f3ab92913c6260e21a45bbe01 /drivers/media/video/cx88/cx88-input.c | |
parent | 0fa14aa6214823bb013b598add866e277a7efe28 (diff) |
V4L (0990): Enable IR support for the Nova-S-Plus
- Enable IR support for the Nova-S-Plus.
Signed-off-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/cx88/cx88-input.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-input.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c index 461019dca901..d7e9813384d8 100644 --- a/drivers/media/video/cx88/cx88-input.c +++ b/drivers/media/video/cx88/cx88-input.c | |||
@@ -388,6 +388,8 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
388 | break; | 388 | break; |
389 | case CX88_BOARD_HAUPPAUGE: | 389 | case CX88_BOARD_HAUPPAUGE: |
390 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 390 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
391 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: | ||
392 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: | ||
391 | ir_codes = ir_codes_hauppauge_new; | 393 | ir_codes = ir_codes_hauppauge_new; |
392 | ir_type = IR_TYPE_RC5; | 394 | ir_type = IR_TYPE_RC5; |
393 | ir->sampling = 1; | 395 | ir->sampling = 1; |
@@ -567,6 +569,8 @@ void cx88_ir_irq(struct cx88_core *core) | |||
567 | break; | 569 | break; |
568 | case CX88_BOARD_HAUPPAUGE: | 570 | case CX88_BOARD_HAUPPAUGE: |
569 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 571 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
572 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: | ||
573 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: | ||
570 | ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); | 574 | ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); |
571 | ir_dprintk("biphase decoded: %x\n", ircode); | 575 | ir_dprintk("biphase decoded: %x\n", ircode); |
572 | if ((ircode & 0xfffff000) != 0x3000) | 576 | if ((ircode & 0xfffff000) != 0x3000) |