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/em28xx | |
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/em28xx')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx-input.c b/drivers/media/video/em28xx/em28xx-input.c index 7a0fe3816e3d..990ee04bbd5e 100644 --- a/drivers/media/video/em28xx/em28xx-input.c +++ b/drivers/media/video/em28xx/em28xx-input.c | |||
@@ -282,8 +282,7 @@ static void em28xx_ir_handle_key(struct em28xx_IR *ir) | |||
282 | 282 | ||
283 | if (do_sendkey) { | 283 | if (do_sendkey) { |
284 | dprintk("sending keypress\n"); | 284 | dprintk("sending keypress\n"); |
285 | ir_input_keydown(ir->input, &ir->ir, poll_result.rc_data[0], | 285 | ir_input_keydown(ir->input, &ir->ir, poll_result.rc_data[0]); |
286 | poll_result.rc_data[0]); | ||
287 | ir_input_nokey(ir->input, &ir->ir); | 286 | ir_input_nokey(ir->input, &ir->ir); |
288 | } | 287 | } |
289 | 288 | ||