2 * Total Media In Hand_02 remote controller keytable for Mygica X8507
4 * Copyright (C) 2012 Alfredo J. Delaiti <alfredodelaiti@netscape.net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <media/rc-map.h>
22 #include <linux/module.h>
25 static struct rc_map_table total_media_in_hand_02
[] = {
37 { 0x000b, KEY_STOP
}, /* Stop */
38 { 0x000c, KEY_POWER2
}, /* Turn on/off application */
39 { 0x000d, KEY_OK
}, /* OK */
40 { 0x000e, KEY_CAMERA
}, /* Snapshot */
41 { 0x000f, KEY_ZOOM
}, /* Full Screen/Restore */
42 { 0x0010, KEY_RIGHT
}, /* Right arrow */
43 { 0x0011, KEY_LEFT
}, /* Left arrow */
44 { 0x0012, KEY_CHANNELUP
},
45 { 0x0013, KEY_CHANNELDOWN
},
46 { 0x0014, KEY_SHUFFLE
},
47 { 0x0016, KEY_PAUSE
},
48 { 0x0017, KEY_PLAY
}, /* Play */
49 { 0x001e, KEY_TIME
}, /* Time Shift */
50 { 0x001f, KEY_RECORD
},
53 { 0x0025, KEY_POWER
}, /* Turn off computer */
54 { 0x0026, KEY_REWIND
}, /* FR << */
55 { 0x0027, KEY_FASTFORWARD
}, /* FF >> */
57 { 0x002b, KEY_VOLUMEUP
},
58 { 0x002c, KEY_VOLUMEDOWN
},
59 { 0x002d, KEY_CHANNEL
}, /* CH Surfing */
60 { 0x0038, KEY_VIDEO
}, /* TV/AV/S-Video/YPbPr */
63 static struct rc_map_list total_media_in_hand_02_map
= {
65 .scan
= total_media_in_hand_02
,
66 .size
= ARRAY_SIZE(total_media_in_hand_02
),
67 .rc_type
= RC_TYPE_RC5
,
68 .name
= RC_MAP_TOTAL_MEDIA_IN_HAND_02
,
72 static int __init
init_rc_map_total_media_in_hand_02(void)
74 return rc_map_register(&total_media_in_hand_02_map
);
77 static void __exit
exit_rc_map_total_media_in_hand_02(void)
79 rc_map_unregister(&total_media_in_hand_02_map
);
82 module_init(init_rc_map_total_media_in_hand_02
)
83 module_exit(exit_rc_map_total_media_in_hand_02
)
85 MODULE_LICENSE("GPL");
86 MODULE_AUTHOR(" Alfredo J. Delaiti <alfredodelaiti@netscape.net>");