Commit 37307897 authored by Christian Hewitt's avatar Christian Hewitt Committed by Mauro Carvalho Chehab

media: rc: add keymap for WeTek Hub remote

The WeTek Hub Android STB ships with a simple NEC remote.
Signed-off-by: default avatarChristian Hewitt <christianshewitt@gmail.com>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 7bb53f36
......@@ -116,6 +116,7 @@ obj-$(CONFIG_RC_MAP) += rc-adstech-dvb-t-pci.o \
rc-videomate-m1f.o \
rc-videomate-s350.o \
rc-videomate-tv-pvr.o \
rc-wetek-hub.o \
rc-winfast.o \
rc-winfast-usbii-deluxe.o \
rc-su3000.o \
......
// SPDX-License-Identifier: GPL-2.0+
// Copyright (c) 2018 Christian Hewitt
#include <media/rc-map.h>
#include <linux/module.h>
/*
* This keymap is used with the WeTek Hub STB.
*/
static struct rc_map_table wetek_hub[] = {
{ 0x77f1, KEY_POWER },
{ 0x77f2, KEY_HOME },
{ 0x77f3, KEY_MUTE }, // mouse
{ 0x77f4, KEY_UP },
{ 0x77f5, KEY_DOWN },
{ 0x77f6, KEY_LEFT },
{ 0x77f7, KEY_RIGHT },
{ 0x77f8, KEY_OK },
{ 0x77f9, KEY_BACK },
{ 0x77fa, KEY_MENU },
{ 0x77fb, KEY_VOLUMEUP },
{ 0x77fc, KEY_VOLUMEDOWN },
};
static struct rc_map_list wetek_hub_map = {
.map = {
.scan = wetek_hub,
.size = ARRAY_SIZE(wetek_hub),
.rc_proto = RC_PROTO_NEC,
.name = RC_MAP_WETEK_HUB,
}
};
static int __init init_rc_map_wetek_hub(void)
{
return rc_map_register(&wetek_hub_map);
}
static void __exit exit_rc_map_wetek_hub(void)
{
rc_map_unregister(&wetek_hub_map);
}
module_init(init_rc_map_wetek_hub)
module_exit(exit_rc_map_wetek_hub)
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Christian Hewitt <christianshewitt@gmail.com>");
......@@ -270,6 +270,7 @@ struct rc_map *rc_map_get(const char *name);
#define RC_MAP_VIDEOMATE_K100 "rc-videomate-k100"
#define RC_MAP_VIDEOMATE_S350 "rc-videomate-s350"
#define RC_MAP_VIDEOMATE_TV_PVR "rc-videomate-tv-pvr"
#define RC_MAP_WETEK_HUB "rc-wetek-hub"
#define RC_MAP_WINFAST "rc-winfast"
#define RC_MAP_WINFAST_USBII_DELUXE "rc-winfast-usbii-deluxe"
#define RC_MAP_SU3000 "rc-su3000"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment