aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-04-02 02:33:35 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 12:56:49 -0300
commit9ce50c1a5faad80cf6100ea4e8970416ee3b8b59 (patch)
treecb46aae81cb9cdf42aab4fdd07d1040a85cdd4c5 /include/media
parentV4L/DVB: ir-common: move IR tables from ir-keymaps.c to a separate file (diff)
downloadlinux-dev-9ce50c1a5faad80cf6100ea4e8970416ee3b8b59.tar.xz
linux-dev-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.h11
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);