1 /* fusionhdtv-mce.h - Keytable for fusionhdtv_mce 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>
15 /* DViCO FUSION HDTV MCE remote */
17 static struct rc_map_table fusionhdtv_mce
[] = {
36 { 0x02, KEY_TV
}, /* Labeled DTV on remote */
39 { 0x1e, KEY_FAVORITES
}, /* Labeled CPF on remote */
41 { 0x46, KEY_POWER2
}, /* TV On/Off button on remote */
42 { 0x0a, KEY_EPG
}, /* Labeled Guide on remote */
45 { 0x59, KEY_INFO
}, /* Labeled MORE on remote */
46 { 0x4d, KEY_MENU
}, /* Labeled DVDMENU on remote */
47 { 0x55, KEY_CYCLEWINDOWS
}, /* Labeled ALT-TAB on remote */
49 { 0x0f, KEY_PREVIOUSSONG
}, /* Labeled |<< REPLAY on remote */
50 { 0x12, KEY_NEXTSONG
}, /* Labeled >>| SKIP on remote */
51 { 0x42, KEY_ENTER
}, /* Labeled START with a green
52 MS windows logo on remote */
54 { 0x15, KEY_VOLUMEUP
},
55 { 0x05, KEY_VOLUMEDOWN
},
56 { 0x11, KEY_CHANNELUP
},
57 { 0x09, KEY_CHANNELDOWN
},
63 { 0x13, KEY_MODE
}, /* 4:3 16:9 select */
67 { 0x47, KEY_PLAYPAUSE
},
68 { 0x4f, KEY_FASTFORWARD
},
75 static struct rc_map_list fusionhdtv_mce_map
= {
77 .scan
= fusionhdtv_mce
,
78 .size
= ARRAY_SIZE(fusionhdtv_mce
),
79 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
80 .name
= RC_MAP_FUSIONHDTV_MCE
,
84 static int __init
init_rc_map_fusionhdtv_mce(void)
86 return rc_map_register(&fusionhdtv_mce_map
);
89 static void __exit
exit_rc_map_fusionhdtv_mce(void)
91 rc_map_unregister(&fusionhdtv_mce_map
);
94 module_init(init_rc_map_fusionhdtv_mce
)
95 module_exit(exit_rc_map_fusionhdtv_mce
)
97 MODULE_LICENSE("GPL");
98 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");