1 /* purpletv.h - Keytable for purpletv 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 static struct rc_map_table purpletv
[] = {
18 { 0x10, KEY_BACKSPACE
}, /* Recall */
30 { 0x12, KEY_DOT
}, /* 100+ */
32 { 0x07, KEY_VOLUMEUP
},
33 { 0x0b, KEY_VOLUMEDOWN
},
35 { 0x18, KEY_KPMINUS
},
38 { 0x0f, KEY_CHANNELUP
},
39 { 0x13, KEY_CHANNELDOWN
},
42 { 0x1b, KEY_VIDEO
}, /* Video source */
43 { 0x1f, KEY_CAMERA
}, /* Snapshot */
44 { 0x49, KEY_LANGUAGE
}, /* MTS Select */
45 { 0x19, KEY_SEARCH
}, /* Auto Scan */
49 { 0x45, KEY_PAUSE
}, /* Pause */
51 { 0x43, KEY_TIME
}, /* Time Shift */
52 { 0x17, KEY_CHANNEL
}, /* SURF CH */
53 { 0x40, KEY_FORWARD
}, /* Forward ? */
54 { 0x42, KEY_REWIND
}, /* Backward ? */
58 static struct rc_map_list purpletv_map
= {
61 .size
= ARRAY_SIZE(purpletv
),
62 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
63 .name
= RC_MAP_PURPLETV
,
67 static int __init
init_rc_map_purpletv(void)
69 return rc_map_register(&purpletv_map
);
72 static void __exit
exit_rc_map_purpletv(void)
74 rc_map_unregister(&purpletv_map
);
77 module_init(init_rc_map_purpletv
)
78 module_exit(exit_rc_map_purpletv
)
80 MODULE_LICENSE("GPL");
81 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");