1 /* pinnacle-color.h - Keytable for pinnacle_color Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <media/rc-map.h>
14 #include <linux/module.h>
16 static struct rc_map_table pinnacle_color
[] = {
29 { 0x2d, KEY_VOLUMEUP
},
30 { 0x1e, KEY_VOLUMEDOWN
},
34 { 0x16, KEY_CHANNELUP
},
35 { 0x17, KEY_CHANNELDOWN
},
44 { 0x07, KEY_REFRESH
},
52 { 0x4e, KEY_FORWARD
},
53 { 0x53, KEY_PREVIOUS
},
68 { 0x74, KEY_CHANNEL
},
69 { 0x0a, KEY_BACKSPACE
},
72 static struct rc_map_list pinnacle_color_map
= {
74 .scan
= pinnacle_color
,
75 .size
= ARRAY_SIZE(pinnacle_color
),
76 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
77 .name
= RC_MAP_PINNACLE_COLOR
,
81 static int __init
init_rc_map_pinnacle_color(void)
83 return rc_map_register(&pinnacle_color_map
);
86 static void __exit
exit_rc_map_pinnacle_color(void)
88 rc_map_unregister(&pinnacle_color_map
);
91 module_init(init_rc_map_pinnacle_color
)
92 module_exit(exit_rc_map_pinnacle_color
)
94 MODULE_LICENSE("GPL");
95 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");