diff options
author | Mauro Carvalho Chehab | 2010-04-02 07:33:35 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab | 2010-05-19 17:56:49 +0200 |
commit | 9ce50c1a5faad80cf6100ea4e8970416ee3b8b59 (patch) | |
tree | cb46aae81cb9cdf42aab4fdd07d1040a85cdd4c5 /include/media | |
parent | V4L/DVB: ir-common: move IR tables from ir-keymaps.c to a separate file (diff) | |
download | kernel-qcow2-linux-9ce50c1a5faad80cf6100ea4e8970416ee3b8b59.tar.gz kernel-qcow2-linux-9ce50c1a5faad80cf6100ea4e8970416ee3b8b59.tar.xz kernel-qcow2-linux-9ce50c1a5faad80cf6100ea4e8970416ee3b8b59.zip |
V4L/DVB: ir-core: Add support for RC map code register
Instead of having all RC tables hardcoded on one file with
all tables there, add infrastructure for registering and dynamically
load the table(s) when needed.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/ir-core.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/media/ir-core.h b/include/media/ir-core.h index 643ff25daa89..39df3cf9e845 100644 --- a/include/media/ir-core.h +++ b/include/media/ir-core.h @@ -52,6 +52,11 @@ struct ir_scancode_table { spinlock_t lock; }; +struct rc_keymap { + struct list_head list; + struct ir_scancode_table map; +}; + struct ir_dev_props { unsigned long allowed_protos; void *priv; @@ -126,6 +131,12 @@ int ir_input_register(struct input_dev *dev, const char *driver_name); void ir_input_unregister(struct input_dev *input_dev); +/* Routines from rc-map.c */ + +int ir_register_map(struct rc_keymap *map); +void ir_unregister_map(struct rc_keymap *map); +struct ir_scancode_table *get_rc_map(const char *name); + /* Routines from ir-sysfs.c */ int ir_register_class(struct input_dev *input_dev); |