mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
1910ea428f
Prefer KEY_NUMERIC_* for number buttons on remotes. Now all the remotes use KEY_NUMERIC_[0-9] for the number buttons rather than keys that could be affected by modifiers (Caps-Lock, or Num-Lock) or regional keymaps. Created using: sed -i 's/KEY_\([0-9]\) /KEY_NUMERIC_\1 /' *.c sed -i 's/KEY_\([0-9]\)}/KEY_NUMERIC_\1}/' *.c sed -i 's/``KEY_\([0-9]\)/``KEY_NUMERIC_\1/' Documentation/media/uapi/rc/rc-tables.rst Signed-off-by: Bastien Nocera <hadess@hadess.net> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/* Keytable for Wideview WT-220U.
|
|
*
|
|
* Copyright (c) 2016 Jonathan McDowell <noodles@earth.li>
|
|
*/
|
|
|
|
#include <media/rc-map.h>
|
|
#include <linux/module.h>
|
|
|
|
/* key list for the tiny remote control (Yakumo, don't know about the others) */
|
|
static struct rc_map_table dtt200u_table[] = {
|
|
{ 0x8001, KEY_MUTE },
|
|
{ 0x8002, KEY_CHANNELDOWN },
|
|
{ 0x8003, KEY_VOLUMEDOWN },
|
|
{ 0x8004, KEY_NUMERIC_1 },
|
|
{ 0x8005, KEY_NUMERIC_2 },
|
|
{ 0x8006, KEY_NUMERIC_3 },
|
|
{ 0x8007, KEY_NUMERIC_4 },
|
|
{ 0x8008, KEY_NUMERIC_5 },
|
|
{ 0x8009, KEY_NUMERIC_6 },
|
|
{ 0x800a, KEY_NUMERIC_7 },
|
|
{ 0x800c, KEY_ZOOM },
|
|
{ 0x800d, KEY_NUMERIC_0 },
|
|
{ 0x800e, KEY_SELECT },
|
|
{ 0x8012, KEY_POWER },
|
|
{ 0x801a, KEY_CHANNELUP },
|
|
{ 0x801b, KEY_NUMERIC_8 },
|
|
{ 0x801e, KEY_VOLUMEUP },
|
|
{ 0x801f, KEY_NUMERIC_9 },
|
|
};
|
|
|
|
static struct rc_map_list dtt200u_map = {
|
|
.map = {
|
|
.scan = dtt200u_table,
|
|
.size = ARRAY_SIZE(dtt200u_table),
|
|
.rc_proto = RC_PROTO_NEC,
|
|
.name = RC_MAP_DTT200U,
|
|
}
|
|
};
|
|
|
|
static int __init init_rc_map_dtt200u(void)
|
|
{
|
|
return rc_map_register(&dtt200u_map);
|
|
}
|
|
|
|
static void __exit exit_rc_map_dtt200u(void)
|
|
{
|
|
rc_map_unregister(&dtt200u_map);
|
|
}
|
|
|
|
module_init(init_rc_map_dtt200u)
|
|
module_exit(exit_rc_map_dtt200u)
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Jonathan McDowell <noodles@earth.li>");
|