diff options
author | Christopher Pascoe <devnull@localhost> | 2006-01-10 00:01:06 +0000 |
---|---|---|
committer | Christopher Pascoe <devnull@localhost> | 2006-01-10 00:01:06 +0000 |
commit | cb734097e7b05b451b19e1f897dbded3622583fd (patch) | |
tree | 4b6af2affec8132b40e3c46dd4dae4e041ec7f0e /linux/drivers/media/video | |
parent | ae4597c2e6fb1ba0e02e9eae9cf567a33b584b1d (diff) | |
download | mediapointer-dvb-s2-cb734097e7b05b451b19e1f897dbded3622583fd.tar.gz mediapointer-dvb-s2-cb734097e7b05b451b19e1f897dbded3622583fd.tar.bz2 |
Activate remote control on HVR1100
Add a missing case which was preventing the operation of the HVR1100
remote.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-input.c b/linux/drivers/media/video/cx88/cx88-input.c index 000840793..c439e3b61 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.28 2006/01/05 20:59:56 mkrufky Exp $ + * $Id: cx88-input.c,v 1.29 2006/01/10 00:01:06 pascoe Exp $ * * Device driver for GPIO attached remote control interfaces * on Conexant 2388x based TV/DVB cards. @@ -705,6 +705,7 @@ void cx88_ir_irq(struct cx88_core *core) case CX88_BOARD_HAUPPAUGE_DVB_T1: case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: + case CX88_BOARD_HAUPPAUGE_HVR1100: ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); ir_dprintk("biphase decoded: %x\n", ircode); if ((ircode & 0xfffff000) != 0x3000) |