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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user