aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-11-17 15:56:53 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-12-29 08:16:52 -0200
commitd100e659b61a735c3343b3d82c1c009b04072cdd (patch)
treed80eedc6a9a51787b4fd2307977b9886a316f122 /include/media
parent[media] rc: Name RC keymap tables as rc_map_table (diff)
downloadlinux-dev-d100e659b61a735c3343b3d82c1c009b04072cdd.tar.xz
linux-dev-d100e659b61a735c3343b3d82c1c009b04072cdd.zip
[media] rc: use rc_map_ prefix for all rc map tables
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/rc-map.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/media/rc-map.h b/include/media/rc-map.h
index 5e9c06ad1d47..1a3d51da1864 100644
--- a/include/media/rc-map.h
+++ b/include/media/rc-map.h
@@ -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 */