diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-11-17 13:56:53 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:52 -0500 |
commit | d100e659b61a735c3343b3d82c1c009b04072cdd (patch) | |
tree | d80eedc6a9a51787b4fd2307977b9886a316f122 /drivers/media/rc/keymaps/rc-nebula.c | |
parent | 2f4f58d689dd71dea67407b74405a3c43e797cb1 (diff) |
[media] rc: use rc_map_ prefix for all rc map tables
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc/keymaps/rc-nebula.c')
-rw-r--r-- | drivers/media/rc/keymaps/rc-nebula.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/rc/keymaps/rc-nebula.c b/drivers/media/rc/keymaps/rc-nebula.c index 8672859aaad1..3e6f077eb700 100644 --- a/drivers/media/rc/keymaps/rc-nebula.c +++ b/drivers/media/rc/keymaps/rc-nebula.c | |||
@@ -70,7 +70,7 @@ static struct rc_map_table nebula[] = { | |||
70 | { 0x36, KEY_PC }, | 70 | { 0x36, KEY_PC }, |
71 | }; | 71 | }; |
72 | 72 | ||
73 | static struct rc_keymap nebula_map = { | 73 | static struct rc_map_list nebula_map = { |
74 | .map = { | 74 | .map = { |
75 | .scan = nebula, | 75 | .scan = nebula, |
76 | .size = ARRAY_SIZE(nebula), | 76 | .size = ARRAY_SIZE(nebula), |
@@ -81,12 +81,12 @@ static struct rc_keymap nebula_map = { | |||
81 | 81 | ||
82 | static int __init init_rc_map_nebula(void) | 82 | static int __init init_rc_map_nebula(void) |
83 | { | 83 | { |
84 | return ir_register_map(&nebula_map); | 84 | return rc_map_register(&nebula_map); |
85 | } | 85 | } |
86 | 86 | ||
87 | static void __exit exit_rc_map_nebula(void) | 87 | static void __exit exit_rc_map_nebula(void) |
88 | { | 88 | { |
89 | ir_unregister_map(&nebula_map); | 89 | rc_map_unregister(&nebula_map); |
90 | } | 90 | } |
91 | 91 | ||
92 | module_init(init_rc_map_nebula) | 92 | module_init(init_rc_map_nebula) |