1 // SPDX-License-Identifier: GPL-2.0+
2 // msi-tvanywhere.h - Keytable for msi_tvanywhere Remote Controller
4 // keymap imported from ir-keymaps.c
6 // Copyright (c) 2010 by Mauro Carvalho Chehab
8 #include <media/rc-map.h>
9 #include <linux/module.h>
11 /* MSI TV@nywhere MASTER remote */
13 static struct rc_map_table msi_tvanywhere
[] = {
15 { 0x00, KEY_NUMERIC_0
},
16 { 0x01, KEY_NUMERIC_1
},
17 { 0x02, KEY_NUMERIC_2
},
18 { 0x03, KEY_NUMERIC_3
},
19 { 0x04, KEY_NUMERIC_4
},
20 { 0x05, KEY_NUMERIC_5
},
21 { 0x06, KEY_NUMERIC_6
},
22 { 0x07, KEY_NUMERIC_7
},
23 { 0x08, KEY_NUMERIC_8
},
24 { 0x09, KEY_NUMERIC_9
},
27 { 0x0f, KEY_SCREEN
}, /* Full Screen */
28 { 0x10, KEY_FN
}, /* Function */
29 { 0x11, KEY_TIME
}, /* Time shift */
31 { 0x13, KEY_MEDIA
}, /* MTS */
33 { 0x16, KEY_REWIND
}, /* backward << */
34 { 0x17, KEY_ENTER
}, /* Return */
35 { 0x18, KEY_FASTFORWARD
}, /* forward >> */
36 { 0x1a, KEY_CHANNELUP
},
37 { 0x1b, KEY_VOLUMEUP
},
38 { 0x1e, KEY_CHANNELDOWN
},
39 { 0x1f, KEY_VOLUMEDOWN
},
42 static struct rc_map_list msi_tvanywhere_map
= {
44 .scan
= msi_tvanywhere
,
45 .size
= ARRAY_SIZE(msi_tvanywhere
),
46 .rc_proto
= RC_PROTO_UNKNOWN
, /* Legacy IR type */
47 .name
= RC_MAP_MSI_TVANYWHERE
,
51 static int __init
init_rc_map_msi_tvanywhere(void)
53 return rc_map_register(&msi_tvanywhere_map
);
56 static void __exit
exit_rc_map_msi_tvanywhere(void)
58 rc_map_unregister(&msi_tvanywhere_map
);
61 module_init(init_rc_map_msi_tvanywhere
)
62 module_exit(exit_rc_map_msi_tvanywhere
)
64 MODULE_LICENSE("GPL");
65 MODULE_AUTHOR("Mauro Carvalho Chehab");