• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/IR/keymaps/
1/* evga-indtube.h - Keytable for evga_indtube Remote Controller
2 *
3 * keymap imported from ir-keymaps.c
4 *
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
6 *
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.
11 */
12
13#include <media/rc-map.h>
14
15/* EVGA inDtube
16   Devin Heitmueller <devin.heitmueller@gmail.com>
17 */
18
19static struct ir_scancode evga_indtube[] = {
20	{ 0x12, KEY_POWER},
21	{ 0x02, KEY_MODE},	/* TV */
22	{ 0x14, KEY_MUTE},
23	{ 0x1a, KEY_CHANNELUP},
24	{ 0x16, KEY_TV2},	/* PIP */
25	{ 0x1d, KEY_VOLUMEUP},
26	{ 0x05, KEY_CHANNELDOWN},
27	{ 0x0f, KEY_PLAYPAUSE},
28	{ 0x19, KEY_VOLUMEDOWN},
29	{ 0x1c, KEY_REWIND},
30	{ 0x0d, KEY_RECORD},
31	{ 0x18, KEY_FORWARD},
32	{ 0x1e, KEY_PREVIOUS},
33	{ 0x1b, KEY_STOP},
34	{ 0x1f, KEY_NEXT},
35	{ 0x13, KEY_CAMERA},
36};
37
38static struct rc_keymap evga_indtube_map = {
39	.map = {
40		.scan    = evga_indtube,
41		.size    = ARRAY_SIZE(evga_indtube),
42		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
43		.name    = RC_MAP_EVGA_INDTUBE,
44	}
45};
46
47static int __init init_rc_map_evga_indtube(void)
48{
49	return ir_register_map(&evga_indtube_map);
50}
51
52static void __exit exit_rc_map_evga_indtube(void)
53{
54	ir_unregister_map(&evga_indtube_map);
55}
56
57module_init(init_rc_map_evga_indtube)
58module_exit(exit_rc_map_evga_indtube)
59
60MODULE_LICENSE("GPL");
61MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
62