diff options
author | Michael Krufky <devnull@localhost> | 2005-11-18 01:02:18 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-11-18 01:02:18 +0000 |
commit | 7b4c126e756d6d876f621685957b16a254610188 (patch) | |
tree | 3c7f30ba0a2cbb139ff5805943efcaea1de30231 | |
parent | c9ee75d4a31a6d9efcffa35fd188a529cb4b731e (diff) | |
download | mediapointer-dvb-s2-7b4c126e756d6d876f621685957b16a254610188.tar.gz mediapointer-dvb-s2-7b4c126e756d6d876f621685957b16a254610188.tar.bz2 |
Enable IR support for the Nova-S-Plus.
From: Steven Toth <stoth@hauppauge.com>
- Enable IR support for the Nova-S-Plus.
Signed-off-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
-rw-r--r-- | linux/Documentation/video4linux/CARDLIST.cx88 | 4 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 8 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-input.c | 6 | ||||
-rw-r--r-- | v4l/ChangeLog | 11 |
4 files changed, 24 insertions, 5 deletions
diff --git a/linux/Documentation/video4linux/CARDLIST.cx88 b/linux/Documentation/video4linux/CARDLIST.cx88 index ba269e6f3..739a343e5 100644 --- a/linux/Documentation/video4linux/CARDLIST.cx88 +++ b/linux/Documentation/video4linux/CARDLIST.cx88 @@ -35,5 +35,5 @@ 34 -> ATI HDTV Wonder [1002:a101] 35 -> WinFast DTV1000-T [107d:665f] 36 -> AVerTV 303 (M126) [1461:000a] - 37 -> Hauppauge Nova-S-Plus DVB-S [0070:9200] - 38 -> Hauppauge Nova-SE2 DVB-S [0070:9202] + 37 -> Hauppauge Nova-S-Plus DVB-S [0070:9201,0070:9202] + 38 -> Hauppauge Nova-SE2 DVB-S [0070:9200] diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 4c81c6ca4..575770cb6 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-cards.c,v 1.104 2005/11/13 18:11:21 mkrufky Exp $ + * $Id: cx88-cards.c,v 1.105 2005/11/18 01:02:18 mkrufky Exp $ * * device driver for Conexant 2388x based TV cards * card-specific stuff. @@ -1078,11 +1078,15 @@ struct cx88_subid cx88_subids[] = { },{ .subvendor = 0x0070, .subdevice = 0x9200, + .card = CX88_BOARD_HAUPPAUGE_NOVASE2_S1, + },{ + .subvendor = 0x0070, + .subdevice = 0x9201, .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1, },{ .subvendor = 0x0070, .subdevice = 0x9202, - .card = CX88_BOARD_HAUPPAUGE_NOVASE2_S1, + .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1, }, }; const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); diff --git a/linux/drivers/media/video/cx88/cx88-input.c b/linux/drivers/media/video/cx88/cx88-input.c index f026d83c3..d92cdc2dc 100644 --- a/linux/drivers/media/video/cx88/cx88-input.c +++ b/linux/drivers/media/video/cx88/cx88-input.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-input.c,v 1.22 2005/10/16 12:13:58 mchehab Exp $ + * $Id: cx88-input.c,v 1.23 2005/11/18 01:02:18 mkrufky Exp $ * * Device driver for GPIO attached remote control interfaces * on Conexant 2388x based TV/DVB cards. @@ -383,6 +383,8 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) break; case CX88_BOARD_HAUPPAUGE: case CX88_BOARD_HAUPPAUGE_DVB_T1: + case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: + case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: ir_codes = ir_codes_hauppauge_new; ir_type = IR_TYPE_RC5; ir->sampling = 1; @@ -564,6 +566,8 @@ void cx88_ir_irq(struct cx88_core *core) break; case CX88_BOARD_HAUPPAUGE: case CX88_BOARD_HAUPPAUGE_DVB_T1: + case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: + case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); ir_dprintk("biphase decoded: %x\n", ircode); if ((ircode & 0xfffff000) != 0x3000) diff --git a/v4l/ChangeLog b/v4l/ChangeLog index ee5bfaf94..ccd4dc179 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,14 @@ +2005-11-18 00:56 mkrufky + + * ../linux/Documentation/video4linux/CARDLIST.cx88: + * ../linux/drivers/media/video/cx88/cx88-cards.c: + * ../linux/drivers/media/video/cx88/cx88-input.c: + (cx88_ir_init), (cx88_ir_irq): + - Enable IR support for the Nova-S-Plus. + + Signed-off-by: Steven Toth <stoth@hauppauge.com> + Signed-off-by: Michael Krufky <mkrufky@m1k.net> + 2005-11-17 01:02 mkrufky * ../v4l_experimental/pvrusb2/Makefile: |