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>
This commit is contained in:
Mauro Carvalho Chehab
2010-04-02 02:33:35 -03:00
parent 77b7422d48
commit 9ce50c1a5f
3 changed files with 87 additions and 1 deletions

View File

@@ -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);