Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164256
b: refs/heads/master
c: 2d21ffe
h: refs/heads/master
v: v3
  • Loading branch information
Dmitri Belimov authored and Mauro Carvalho Chehab committed Sep 19, 2009
1 parent b4debc9 commit 9ee4cad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5eca4823ea8f99a7109779f68cedb00535aa6834
refs/heads/master: 2d21ffe05a188ee7e5583172c06f2b820c4ad44a
4 changes: 4 additions & 0 deletions trunk/drivers/media/video/saa7134/saa7134-input.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@ static int get_key_beholdm6xx(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
if (data[10] != 0x6b && data[11] != 0x86 && disable_other_ir)
return 0;

/* Wrong data decode fix */
if (data[9] != (unsigned char)(~data[8]))
return 0;

*ir_key = data[9];
*ir_raw = data[9];

Expand Down

0 comments on commit 9ee4cad

Please sign in to comment.