diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-11-27 20:40:22 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:42:19 -0500 |
commit | 8573b74af25c279de3e309beddcba984bee9ec15 (patch) | |
tree | 62635afe2df0727b5eed544f43d9e6b5c2aabdcb /drivers/media/video/ir-kbd-i2c.c | |
parent | ef53a1159dfcdc1fecf5adb5b8d26803f194c09b (diff) |
V4L/DVB (13533): ir: use dynamic tables, instead of static ones
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ir-kbd-i2c.c')
-rw-r--r-- | drivers/media/video/ir-kbd-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index aec36660987d..9c6d0ae58b1f 100644 --- a/drivers/media/video/ir-kbd-i2c.c +++ b/drivers/media/video/ir-kbd-i2c.c | |||
@@ -275,7 +275,7 @@ static void ir_key_poll(struct IR_i2c *ir) | |||
275 | if (0 == rc) { | 275 | if (0 == rc) { |
276 | ir_input_nokey(ir->input, &ir->ir); | 276 | ir_input_nokey(ir->input, &ir->ir); |
277 | } else { | 277 | } else { |
278 | ir_input_keydown(ir->input, &ir->ir, ir_key, ir_raw); | 278 | ir_input_keydown(ir->input, &ir->ir, ir_key); |
279 | } | 279 | } |
280 | } | 280 | } |
281 | 281 | ||