[media, edac] Change my email address
[linux-2.6-block.git] / drivers / media / rc / keymaps / rc-apac-viewcomp.c
CommitLineData
6686fa69
MCC
1/* apac-viewcomp.h - Keytable for apac_viewcomp Remote Controller
2 *
3 * keymap imported from ir-keymaps.c
4 *
37e59f87 5 * Copyright (c) 2010 by Mauro Carvalho Chehab
6686fa69
MCC
6 *
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.
11 */
12
13#include <media/rc-map.h>
7a707b89 14#include <linux/module.h>
6686fa69
MCC
15
16/* Attila Kondoros <attila.kondoros@chello.hu> */
17
2f4f58d6 18static struct rc_map_table apac_viewcomp[] = {
6686fa69
MCC
19
20 { 0x01, KEY_1 },
21 { 0x02, KEY_2 },
22 { 0x03, KEY_3 },
23 { 0x04, KEY_4 },
24 { 0x05, KEY_5 },
25 { 0x06, KEY_6 },
26 { 0x07, KEY_7 },
27 { 0x08, KEY_8 },
28 { 0x09, KEY_9 },
29 { 0x00, KEY_0 },
30 { 0x17, KEY_LAST }, /* +100 */
31 { 0x0a, KEY_LIST }, /* recall */
32
33
34 { 0x1c, KEY_TUNER }, /* TV/FM */
35 { 0x15, KEY_SEARCH }, /* scan */
36 { 0x12, KEY_POWER }, /* power */
37 { 0x1f, KEY_VOLUMEDOWN }, /* vol up */
38 { 0x1b, KEY_VOLUMEUP }, /* vol down */
39 { 0x1e, KEY_CHANNELDOWN }, /* chn up */
40 { 0x1a, KEY_CHANNELUP }, /* chn down */
41
42 { 0x11, KEY_VIDEO }, /* video */
43 { 0x0f, KEY_ZOOM }, /* full screen */
44 { 0x13, KEY_MUTE }, /* mute/unmute */
45 { 0x10, KEY_TEXT }, /* min */
46
47 { 0x0d, KEY_STOP }, /* freeze */
48 { 0x0e, KEY_RECORD }, /* record */
49 { 0x1d, KEY_PLAYPAUSE }, /* stop */
50 { 0x19, KEY_PLAY }, /* play */
51
52 { 0x16, KEY_GOTO }, /* osd */
53 { 0x14, KEY_REFRESH }, /* default */
54 { 0x0c, KEY_KPPLUS }, /* fine tune >>>> */
55 { 0x18, KEY_KPMINUS }, /* fine tune <<<< */
56};
57
d100e659 58static struct rc_map_list apac_viewcomp_map = {
6686fa69
MCC
59 .map = {
60 .scan = apac_viewcomp,
61 .size = ARRAY_SIZE(apac_viewcomp),
52b66144 62 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
6686fa69
MCC
63 .name = RC_MAP_APAC_VIEWCOMP,
64 }
65};
66
67static int __init init_rc_map_apac_viewcomp(void)
68{
d100e659 69 return rc_map_register(&apac_viewcomp_map);
6686fa69
MCC
70}
71
72static void __exit exit_rc_map_apac_viewcomp(void)
73{
d100e659 74 rc_map_unregister(&apac_viewcomp_map);
6686fa69
MCC
75}
76
77module_init(init_rc_map_apac_viewcomp)
78module_exit(exit_rc_map_apac_viewcomp)
79
80MODULE_LICENSE("GPL");
37e59f87 81MODULE_AUTHOR("Mauro Carvalho Chehab");