[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
rodzic 2f4f58d689
commit d100e659b6
89 zmienionych plików z 280 dodań i 280 usunięć

Wyświetl plik

@@ -57,7 +57,7 @@ static struct rc_map_table pixelview_mk12[] = {
{ 0x866b07, KEY_RADIO }, /* FM */
};
static struct rc_keymap pixelview_map = {
static struct rc_map_list pixelview_map = {
.map = {
.scan = pixelview_mk12,
.size = ARRAY_SIZE(pixelview_mk12),
@@ -68,12 +68,12 @@ static struct rc_keymap pixelview_map = {
static int __init init_rc_map_pixelview(void)
{
return ir_register_map(&pixelview_map);
return rc_map_register(&pixelview_map);
}
static void __exit exit_rc_map_pixelview(void)
{
ir_unregister_map(&pixelview_map);
rc_map_unregister(&pixelview_map);
}
module_init(init_rc_map_pixelview)