aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/keymaps/rc-videomate-m1f.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/rc/keymaps/rc-videomate-m1f.c')
-rw-r--r--drivers/media/rc/keymaps/rc-videomate-m1f.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/media/rc/keymaps/rc-videomate-m1f.c b/drivers/media/rc/keymaps/rc-videomate-m1f.c
index 3bd1de1f585c..23ee05e53949 100644
--- a/drivers/media/rc/keymaps/rc-videomate-m1f.c
+++ b/drivers/media/rc/keymaps/rc-videomate-m1f.c
@@ -1,4 +1,4 @@
1/* videomate-m1f.h - Keytable for videomate_m1f Remote Controller 1/* videomate-k100.h - Keytable for videomate_k100 Remote Controller
2 * 2 *
3 * keymap imported from ir-keymaps.c 3 * keymap imported from ir-keymaps.c
4 * 4 *
@@ -13,7 +13,7 @@
13#include <media/rc-map.h> 13#include <media/rc-map.h>
14#include <linux/module.h> 14#include <linux/module.h>
15 15
16static struct rc_map_table videomate_m1f[] = { 16static struct rc_map_table videomate_k100[] = {
17 { 0x01, KEY_POWER }, 17 { 0x01, KEY_POWER },
18 { 0x31, KEY_TUNER }, 18 { 0x31, KEY_TUNER },
19 { 0x33, KEY_VIDEO }, 19 { 0x33, KEY_VIDEO },
@@ -67,27 +67,27 @@ static struct rc_map_table videomate_m1f[] = {
67 { 0x18, KEY_TEXT }, 67 { 0x18, KEY_TEXT },
68}; 68};
69 69
70static struct rc_map_list videomate_m1f_map = { 70static struct rc_map_list videomate_k100_map = {
71 .map = { 71 .map = {
72 .scan = videomate_m1f, 72 .scan = videomate_k100,
73 .size = ARRAY_SIZE(videomate_m1f), 73 .size = ARRAY_SIZE(videomate_k100),
74 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */ 74 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
75 .name = RC_MAP_VIDEOMATE_M1F, 75 .name = RC_MAP_VIDEOMATE_K100,
76 } 76 }
77}; 77};
78 78
79static int __init init_rc_map_videomate_m1f(void) 79static int __init init_rc_map_videomate_k100(void)
80{ 80{
81 return rc_map_register(&videomate_m1f_map); 81 return rc_map_register(&videomate_k100_map);
82} 82}
83 83
84static void __exit exit_rc_map_videomate_m1f(void) 84static void __exit exit_rc_map_videomate_k100(void)
85{ 85{
86 rc_map_unregister(&videomate_m1f_map); 86 rc_map_unregister(&videomate_k100_map);
87} 87}
88 88
89module_init(init_rc_map_videomate_m1f) 89module_init(init_rc_map_videomate_k100)
90module_exit(exit_rc_map_videomate_m1f) 90module_exit(exit_rc_map_videomate_k100)
91 91
92MODULE_LICENSE("GPL"); 92MODULE_LICENSE("GPL");
93MODULE_AUTHOR("Pavel Osnova <pvosnova@gmail.com>"); 93MODULE_AUTHOR("Pavel Osnova <pvosnova@gmail.com>");