sched: Remove double_rq_lock() from __migrate_task()
[linux/fpc-iii.git] / drivers / media / rc / keymaps / rc-kaiomy.c
blob60803a732c0866ddcb24a5d1f81728dc3caac512
1 /* kaiomy.h - Keytable for kaiomy 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 /* Kaiomy TVnPC U2
17 Mauro Carvalho Chehab <mchehab@infradead.org>
20 static struct rc_map_table kaiomy[] = {
21 { 0x43, KEY_POWER2},
22 { 0x01, KEY_LIST},
23 { 0x0b, KEY_ZOOM},
24 { 0x03, KEY_POWER},
26 { 0x04, KEY_1},
27 { 0x08, KEY_2},
28 { 0x02, KEY_3},
30 { 0x0f, KEY_4},
31 { 0x05, KEY_5},
32 { 0x06, KEY_6},
34 { 0x0c, KEY_7},
35 { 0x0d, KEY_8},
36 { 0x0a, KEY_9},
38 { 0x11, KEY_0},
40 { 0x09, KEY_CHANNELUP},
41 { 0x07, KEY_CHANNELDOWN},
43 { 0x0e, KEY_VOLUMEUP},
44 { 0x13, KEY_VOLUMEDOWN},
46 { 0x10, KEY_HOME},
47 { 0x12, KEY_ENTER},
49 { 0x14, KEY_RECORD},
50 { 0x15, KEY_STOP},
51 { 0x16, KEY_PLAY},
52 { 0x17, KEY_MUTE},
54 { 0x18, KEY_UP},
55 { 0x19, KEY_DOWN},
56 { 0x1a, KEY_LEFT},
57 { 0x1b, KEY_RIGHT},
59 { 0x1c, KEY_RED},
60 { 0x1d, KEY_GREEN},
61 { 0x1e, KEY_YELLOW},
62 { 0x1f, KEY_BLUE},
65 static struct rc_map_list kaiomy_map = {
66 .map = {
67 .scan = kaiomy,
68 .size = ARRAY_SIZE(kaiomy),
69 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
70 .name = RC_MAP_KAIOMY,
74 static int __init init_rc_map_kaiomy(void)
76 return rc_map_register(&kaiomy_map);
79 static void __exit exit_rc_map_kaiomy(void)
81 rc_map_unregister(&kaiomy_map);
84 module_init(init_rc_map_kaiomy)
85 module_exit(exit_rc_map_kaiomy)
87 MODULE_LICENSE("GPL");
88 MODULE_AUTHOR("Mauro Carvalho Chehab");