diff options
author | Jarod Wilson <jarod@redhat.com> | 2010-04-16 18:27:58 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 12:57:40 -0300 |
commit | 1c0e0ee580c476234b5ea410f5263fcb27d96389 (patch) | |
tree | 4d8096af517cecc799cb36e0794c3c481156ff6c /include/media | |
parent | d62e85a0949d2b899405a1ffbae06615227d4c97 (diff) | |
download | op-kernel-dev-1c0e0ee580c476234b5ea410f5263fcb27d96389.zip op-kernel-dev-1c0e0ee580c476234b5ea410f5263fcb27d96389.tar.gz |
V4L/DVB: ir-core: make ir_g_keycode_from_table a public function
The imon driver I've previously submitted and have been porting to
use ir-core needs to use ir_g_keycode_from_table, as ir_keydown is
not sufficient, due to these things having really oddball hardware
decoders in them. This just moves the function declaration from
ir-core-priv.h over to ir-core.h.
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/ir-core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/ir-core.h b/include/media/ir-core.h index ab3bd30..51e8eb3 100644 --- a/include/media/ir-core.h +++ b/include/media/ir-core.h @@ -124,6 +124,7 @@ void ir_input_unregister(struct input_dev *input_dev); void ir_repeat(struct input_dev *dev); void ir_keydown(struct input_dev *dev, int scancode, u8 toggle); +u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode); /* From ir-raw-event.c */ |