[media] rc: use rc_map_ prefix for all rc map tables

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab
2010-11-17 15:56:53 -03:00
parent 2f4f58d689
commit d100e659b6
89 changed files with 280 additions and 280 deletions

View File

@@ -40,16 +40,16 @@ struct rc_map {
spinlock_t lock;
};
struct rc_keymap {
struct rc_map_list {
struct list_head list;
struct rc_map map;
};
/* Routines from rc-map.c */
int ir_register_map(struct rc_keymap *map);
void ir_unregister_map(struct rc_keymap *map);
struct rc_map *get_rc_map(const char *name);
int rc_map_register(struct rc_map_list *map);
void rc_map_unregister(struct rc_map_list *map);
struct rc_map *rc_map_get(const char *name);
void rc_map_init(void);
/* Names of the several keytables defined in-kernel */