1 /* nec-terratec-cinergy-xs.h - Keytable for nec_terratec_cinergy_xs 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 /* Terratec Cinergy Hybrid T USB XS FM
17 Mauro Carvalho Chehab <mchehab@redhat.com>
20 static struct rc_map_table nec_terratec_cinergy_xs
[] = {
22 { 0x1401, KEY_POWER2
},
24 { 0x1442, KEY_MENU
}, /* DVD menu */
25 { 0x1443, KEY_SUBTITLE
},
26 { 0x1444, KEY_TEXT
}, /* Teletext */
27 { 0x1445, KEY_DELETE
},
40 { 0x140b, KEY_TUNER
}, /* AV */
41 { 0x140d, KEY_MODE
}, /* A.B */
46 { 0x144a, KEY_RADIO
}, /* Music */
47 { 0x144b, KEY_CAMERA
}, /* PIC */
57 { 0x144d, KEY_BACKSPACE
},
59 { 0x141c, KEY_VOLUMEUP
},
60 { 0x141e, KEY_VOLUMEDOWN
},
65 { 0x141b, KEY_CHANNELUP
},
66 { 0x141f, KEY_CHANNELDOWN
},
70 { 0x1419, KEY_YELLOW
},
73 { 0x1458, KEY_RECORD
},
78 { 0x144e, KEY_REWIND
},
79 { 0x144f, KEY_FASTFORWARD
},
83 static struct rc_map_list nec_terratec_cinergy_xs_map
= {
85 .scan
= nec_terratec_cinergy_xs
,
86 .size
= ARRAY_SIZE(nec_terratec_cinergy_xs
),
87 .rc_type
= RC_TYPE_NEC
,
88 .name
= RC_MAP_NEC_TERRATEC_CINERGY_XS
,
92 static int __init
init_rc_map_nec_terratec_cinergy_xs(void)
94 return rc_map_register(&nec_terratec_cinergy_xs_map
);
97 static void __exit
exit_rc_map_nec_terratec_cinergy_xs(void)
99 rc_map_unregister(&nec_terratec_cinergy_xs_map
);
102 module_init(init_rc_map_nec_terratec_cinergy_xs
)
103 module_exit(exit_rc_map_nec_terratec_cinergy_xs
)
105 MODULE_LICENSE("GPL");
106 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");