1 /* pv951.h - Keytable for pv951 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 /* Mark Phalan <phalanm@o2.ie> */
17 static struct ir_scancode pv951
[] = {
31 { 0x1f, KEY_VOLUMEDOWN
},
32 { 0x1b, KEY_VOLUMEUP
},
33 { 0x1a, KEY_CHANNELUP
},
34 { 0x1e, KEY_CHANNELDOWN
},
36 { 0x1d, KEY_PAGEDOWN
},
39 { 0x18, KEY_KPPLUSMINUS
}, /* CH +/- */
40 { 0x16, KEY_SUBTITLE
}, /* CC */
41 { 0x0d, KEY_TEXT
}, /* TTX */
42 { 0x0b, KEY_TV
}, /* AIR/CBL */
43 { 0x11, KEY_PC
}, /* PC/TV */
44 { 0x17, KEY_OK
}, /* CH RTN */
45 { 0x19, KEY_MODE
}, /* FUNC */
46 { 0x0c, KEY_SEARCH
}, /* AUTOSCAN */
48 /* Not sure what to do with these ones! */
49 { 0x0f, KEY_SELECT
}, /* SOURCE */
50 { 0x0a, KEY_KPPLUS
}, /* +100 */
51 { 0x14, KEY_EQUAL
}, /* SYNC */
52 { 0x1c, KEY_MEDIA
}, /* PC/TV */
55 static struct rc_keymap pv951_map
= {
58 .size
= ARRAY_SIZE(pv951
),
59 .ir_type
= IR_TYPE_UNKNOWN
, /* Legacy IR type */
64 static int __init
init_rc_map_pv951(void)
66 return ir_register_map(&pv951_map
);
69 static void __exit
exit_rc_map_pv951(void)
71 ir_unregister_map(&pv951_map
);
74 module_init(init_rc_map_pv951
)
75 module_exit(exit_rc_map_pv951
)
77 MODULE_LICENSE("GPL");
78 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
This page took 0.033375 seconds and 5 git commands to generate.