PageRenderTime 16ms CodeModel.GetById 7ms app.highlight 7ms RepoModel.GetById 1ms app.codeStats 0ms

/drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.c

https://bitbucket.org/slukk/jb-tsm-kernel-4.2
C | 69 lines | 48 code | 8 blank | 13 comment | 0 complexity | a93774502f5e999144315be71e7974a9 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
 1/* pinnacle-pctv-hd.h - Keytable for pinnacle_pctv_hd 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/* Pinnacle PCTV HD 800i mini remote */
16
17static struct rc_map_table pinnacle_pctv_hd[] = {
18	/* Key codes for the tiny Pinnacle remote*/
19	{ 0x0700, KEY_MUTE },
20	{ 0x0701, KEY_MENU }, /* Pinnacle logo */
21	{ 0x0739, KEY_POWER },
22	{ 0x0703, KEY_VOLUMEUP },
23	{ 0x0709, KEY_VOLUMEDOWN },
24	{ 0x0706, KEY_CHANNELUP },
25	{ 0x070c, KEY_CHANNELDOWN },
26	{ 0x070f, KEY_1 },
27	{ 0x0715, KEY_2 },
28	{ 0x0710, KEY_3 },
29	{ 0x0718, KEY_4 },
30	{ 0x071b, KEY_5 },
31	{ 0x071e, KEY_6 },
32	{ 0x0711, KEY_7 },
33	{ 0x0721, KEY_8 },
34	{ 0x0712, KEY_9 },
35	{ 0x0727, KEY_0 },
36	{ 0x0724, KEY_ZOOM }, /* 'Square' key */
37	{ 0x072a, KEY_SUBTITLE },   /* 'T' key */
38	{ 0x072d, KEY_REWIND },
39	{ 0x0730, KEY_PLAYPAUSE },
40	{ 0x0733, KEY_FASTFORWARD },
41	{ 0x0736, KEY_RECORD },
42	{ 0x073c, KEY_STOP },
43	{ 0x073f, KEY_HELP }, /* '?' key */
44};
45
46static struct rc_map_list pinnacle_pctv_hd_map = {
47	.map = {
48		.scan    = pinnacle_pctv_hd,
49		.size    = ARRAY_SIZE(pinnacle_pctv_hd),
50		.rc_type = RC_TYPE_RC5,
51		.name    = RC_MAP_PINNACLE_PCTV_HD,
52	}
53};
54
55static int __init init_rc_map_pinnacle_pctv_hd(void)
56{
57	return rc_map_register(&pinnacle_pctv_hd_map);
58}
59
60static void __exit exit_rc_map_pinnacle_pctv_hd(void)
61{
62	rc_map_unregister(&pinnacle_pctv_hd_map);
63}
64
65module_init(init_rc_map_pinnacle_pctv_hd)
66module_exit(exit_rc_map_pinnacle_pctv_hd)
67
68MODULE_LICENSE("GPL");
69MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");