0001
0002
0003
0004 #include <media/rc-map.h>
0005 #include <linux/module.h>
0006
0007
0008
0009
0010
0011 static struct rc_map_table tanix_tx5max[] = {
0012 { 0x40404d, KEY_POWER },
0013 { 0x404043, KEY_MUTE },
0014
0015 { 0x404017, KEY_VOLUMEDOWN },
0016 { 0x404018, KEY_VOLUMEUP },
0017
0018 { 0x40400b, KEY_UP },
0019 { 0x404010, KEY_LEFT },
0020 { 0x404011, KEY_RIGHT },
0021 { 0x40400e, KEY_DOWN },
0022 { 0x40400d, KEY_OK },
0023
0024 { 0x40401a, KEY_HOME },
0025 { 0x404045, KEY_MENU },
0026 { 0x404042, KEY_BACK },
0027
0028 { 0x404001, KEY_1 },
0029 { 0x404002, KEY_2 },
0030 { 0x404003, KEY_3 },
0031
0032 { 0x404004, KEY_4 },
0033 { 0x404005, KEY_5 },
0034 { 0x404006, KEY_6 },
0035
0036 { 0x404007, KEY_7 },
0037 { 0x404008, KEY_8 },
0038 { 0x404009, KEY_9 },
0039
0040 { 0x404047, KEY_SUBTITLE },
0041 { 0x404000, KEY_0 },
0042 { 0x40400c, KEY_DELETE },
0043 };
0044
0045 static struct rc_map_list tanix_tx5max_map = {
0046 .map = {
0047 .scan = tanix_tx5max,
0048 .size = ARRAY_SIZE(tanix_tx5max),
0049 .rc_proto = RC_PROTO_NECX,
0050 .name = RC_MAP_TANIX_TX5MAX,
0051 }
0052 };
0053
0054 static int __init init_rc_map_tanix_tx5max(void)
0055 {
0056 return rc_map_register(&tanix_tx5max_map);
0057 }
0058
0059 static void __exit exit_rc_map_tanix_tx5max(void)
0060 {
0061 rc_map_unregister(&tanix_tx5max_map);
0062 }
0063
0064 module_init(init_rc_map_tanix_tx5max)
0065 module_exit(exit_rc_map_tanix_tx5max)
0066
0067 MODULE_LICENSE("GPL");
0068 MODULE_AUTHOR("Christian Hewitt <christianshewitt@gmail.com>");