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/cx23885/cx23885-input.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/cx23885/cx23885-input.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/cx23885/cx23885-input.c b/drivers/media/video/cx23885/cx23885-input.c index f000ed787d4e..fea882d1fbcb 100644 --- a/drivers/media/video/cx23885/cx23885-input.c +++ b/drivers/media/video/cx23885/cx23885-input.c | |||
@@ -94,8 +94,7 @@ static void cx23885_input_process_raw_rc5(struct cx23885_dev *dev) | |||
94 | RC5_START(ir_input->last_rc5) == 0) { | 94 | RC5_START(ir_input->last_rc5) == 0) { |
95 | /* This keypress is differnet: not an auto repeat */ | 95 | /* This keypress is differnet: not an auto repeat */ |
96 | ir_input_nokey(ir_input->dev, &ir_input->ir); | 96 | ir_input_nokey(ir_input->dev, &ir_input->ir); |
97 | ir_input_keydown(ir_input->dev, &ir_input->ir, | 97 | ir_input_keydown(ir_input->dev, &ir_input->ir, command); |
98 | command, ir_input->code); | ||
99 | } | 98 | } |
100 | ir_input->last_rc5 = rc5; | 99 | ir_input->last_rc5 = rc5; |
101 | 100 | ||