[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

@@ -63,7 +63,7 @@ static struct rc_map_table adstech_dvb_t_pci[] = {
{ 0x1c, KEY_VOLUMEDOWN },
};
static struct rc_keymap adstech_dvb_t_pci_map = {
static struct rc_map_list adstech_dvb_t_pci_map = {
.map = {
.scan = adstech_dvb_t_pci,
.size = ARRAY_SIZE(adstech_dvb_t_pci),
@@ -74,12 +74,12 @@ static struct rc_keymap adstech_dvb_t_pci_map = {
static int __init init_rc_map_adstech_dvb_t_pci(void)
{
return ir_register_map(&adstech_dvb_t_pci_map);
return rc_map_register(&adstech_dvb_t_pci_map);
}
static void __exit exit_rc_map_adstech_dvb_t_pci(void)
{
ir_unregister_map(&adstech_dvb_t_pci_map);
rc_map_unregister(&adstech_dvb_t_pci_map);
}
module_init(init_rc_map_adstech_dvb_t_pci)