1 /* iodata-bctv7e.h - Keytable for iodata_bctv7e Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab
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 /* IO-DATA BCTV7E Remote */
18 static struct rc_map_table iodata_bctv7e
[] = {
20 { 0x20, KEY_RADIO
}, /* FM */
25 { 0x44, KEY_0
}, /* 10 */
36 { 0x10, KEY_L
}, /* Live */
37 { 0x08, KEY_TIME
}, /* Time Shift */
39 { 0x18, KEY_PLAYPAUSE
}, /* Play */
41 { 0x24, KEY_ENTER
}, /* 11 */
42 { 0x64, KEY_ESC
}, /* 12 */
43 { 0x04, KEY_M
}, /* Multi */
46 { 0x34, KEY_CHANNELUP
},
47 { 0x74, KEY_VOLUMEUP
},
50 { 0x4c, KEY_VCR
}, /* SVIDEO */
51 { 0x2c, KEY_CHANNELDOWN
},
52 { 0x6c, KEY_VOLUMEDOWN
},
56 { 0x3c, KEY_RED
}, /* || (red) */
57 { 0x7c, KEY_RECORD
}, /* recording */
60 { 0x41, KEY_REWIND
}, /* backward << */
62 { 0x61, KEY_FASTFORWARD
}, /* forward >> */
63 { 0x01, KEY_NEXT
}, /* skip >| */
66 static struct rc_map_list iodata_bctv7e_map
= {
68 .scan
= iodata_bctv7e
,
69 .size
= ARRAY_SIZE(iodata_bctv7e
),
70 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
71 .name
= RC_MAP_IODATA_BCTV7E
,
75 static int __init
init_rc_map_iodata_bctv7e(void)
77 return rc_map_register(&iodata_bctv7e_map
);
80 static void __exit
exit_rc_map_iodata_bctv7e(void)
82 rc_map_unregister(&iodata_bctv7e_map
);
85 module_init(init_rc_map_iodata_bctv7e
)
86 module_exit(exit_rc_map_iodata_bctv7e
)
88 MODULE_LICENSE("GPL");
89 MODULE_AUTHOR("Mauro Carvalho Chehab");