1 /* pinnacle-pctv-hd.h - Keytable for pinnacle_pctv_hd 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 /* Pinnacle PCTV HD 800i mini remote */
18 static struct rc_map_table pinnacle_pctv_hd
[] = {
19 /* Key codes for the tiny Pinnacle remote*/
21 { 0x0701, KEY_MENU
}, /* Pinnacle logo */
22 { 0x0739, KEY_POWER
},
23 { 0x0703, KEY_VOLUMEUP
},
25 { 0x0709, KEY_VOLUMEDOWN
},
26 { 0x0706, KEY_CHANNELUP
},
27 { 0x070c, KEY_CHANNELDOWN
},
38 { 0x0724, KEY_ZOOM
}, /* 'Square' key */
39 { 0x072a, KEY_SUBTITLE
}, /* 'T' key */
40 { 0x072d, KEY_REWIND
},
41 { 0x0730, KEY_PLAYPAUSE
},
42 { 0x0733, KEY_FASTFORWARD
},
43 { 0x0736, KEY_RECORD
},
45 { 0x073f, KEY_HELP
}, /* '?' key */
48 static struct rc_map_list pinnacle_pctv_hd_map
= {
50 .scan
= pinnacle_pctv_hd
,
51 .size
= ARRAY_SIZE(pinnacle_pctv_hd
),
52 .rc_type
= RC_TYPE_RC5
,
53 .name
= RC_MAP_PINNACLE_PCTV_HD
,
57 static int __init
init_rc_map_pinnacle_pctv_hd(void)
59 return rc_map_register(&pinnacle_pctv_hd_map
);
62 static void __exit
exit_rc_map_pinnacle_pctv_hd(void)
64 rc_map_unregister(&pinnacle_pctv_hd_map
);
67 module_init(init_rc_map_pinnacle_pctv_hd
)
68 module_exit(exit_rc_map_pinnacle_pctv_hd
)
70 MODULE_LICENSE("GPL");
71 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");