[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:
@@ -47,7 +47,7 @@ static struct rc_map_table tbs_nec[] = {
|
||||
{ 0x1b, KEY_MODE},
|
||||
};
|
||||
|
||||
static struct rc_keymap tbs_nec_map = {
|
||||
static struct rc_map_list tbs_nec_map = {
|
||||
.map = {
|
||||
.scan = tbs_nec,
|
||||
.size = ARRAY_SIZE(tbs_nec),
|
||||
@@ -58,12 +58,12 @@ static struct rc_keymap tbs_nec_map = {
|
||||
|
||||
static int __init init_rc_map_tbs_nec(void)
|
||||
{
|
||||
return ir_register_map(&tbs_nec_map);
|
||||
return rc_map_register(&tbs_nec_map);
|
||||
}
|
||||
|
||||
static void __exit exit_rc_map_tbs_nec(void)
|
||||
{
|
||||
ir_unregister_map(&tbs_nec_map);
|
||||
rc_map_unregister(&tbs_nec_map);
|
||||
}
|
||||
|
||||
module_init(init_rc_map_tbs_nec)
|
||||
|
Reference in New Issue
Block a user