linux/drivers/media/rc/keymaps/rc-tango.c
Thomas Gleixner d2912cb15b treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
Based on 2 normalized pattern(s):

  this program is free software you can redistribute it and or modify
  it under the terms of the gnu general public license version 2 as
  published by the free software foundation

  this program is free software you can redistribute it and or modify
  it under the terms of the gnu general public license version 2 as
  published by the free software foundation #

extracted by the scancode license scanner the SPDX license identifier

  GPL-2.0-only

has been chosen to replace the boilerplate/reference in 4122 file(s).

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Enrico Weigelt <info@metux.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Allison Randal <allison@lohutok.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2019-06-19 17:09:55 +02:00

89 lines
1.8 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2017 Sigma Designs
*/
#include <linux/module.h>
#include <media/rc-map.h>
static struct rc_map_table tango_table[] = {
{ 0x4cb4a, KEY_POWER },
{ 0x4cb48, KEY_FILE },
{ 0x4cb0f, KEY_SETUP },
{ 0x4cb4d, KEY_SUSPEND },
{ 0x4cb4e, KEY_VOLUMEUP },
{ 0x4cb44, KEY_EJECTCD },
{ 0x4cb13, KEY_TV },
{ 0x4cb51, KEY_MUTE },
{ 0x4cb52, KEY_VOLUMEDOWN },
{ 0x4cb41, KEY_1 },
{ 0x4cb03, KEY_2 },
{ 0x4cb42, KEY_3 },
{ 0x4cb45, KEY_4 },
{ 0x4cb07, KEY_5 },
{ 0x4cb46, KEY_6 },
{ 0x4cb55, KEY_7 },
{ 0x4cb17, KEY_8 },
{ 0x4cb56, KEY_9 },
{ 0x4cb1b, KEY_0 },
{ 0x4cb59, KEY_DELETE },
{ 0x4cb5a, KEY_CAPSLOCK },
{ 0x4cb47, KEY_BACK },
{ 0x4cb05, KEY_SWITCHVIDEOMODE },
{ 0x4cb06, KEY_UP },
{ 0x4cb43, KEY_LEFT },
{ 0x4cb01, KEY_RIGHT },
{ 0x4cb0a, KEY_DOWN },
{ 0x4cb02, KEY_ENTER },
{ 0x4cb4b, KEY_INFO },
{ 0x4cb09, KEY_HOME },
{ 0x4cb53, KEY_MENU },
{ 0x4cb12, KEY_PREVIOUS },
{ 0x4cb50, KEY_PLAY },
{ 0x4cb11, KEY_NEXT },
{ 0x4cb4f, KEY_TITLE },
{ 0x4cb0e, KEY_REWIND },
{ 0x4cb4c, KEY_STOP },
{ 0x4cb0d, KEY_FORWARD },
{ 0x4cb57, KEY_MEDIA_REPEAT },
{ 0x4cb16, KEY_ANGLE },
{ 0x4cb54, KEY_PAUSE },
{ 0x4cb15, KEY_SLOW },
{ 0x4cb5b, KEY_TIME },
{ 0x4cb1a, KEY_AUDIO },
{ 0x4cb58, KEY_SUBTITLE },
{ 0x4cb19, KEY_ZOOM },
{ 0x4cb5f, KEY_RED },
{ 0x4cb1e, KEY_GREEN },
{ 0x4cb5c, KEY_YELLOW },
{ 0x4cb1d, KEY_BLUE },
};
static struct rc_map_list tango_map = {
.map = {
.scan = tango_table,
.size = ARRAY_SIZE(tango_table),
.rc_proto = RC_PROTO_NECX,
.name = RC_MAP_TANGO,
}
};
static int __init init_rc_map_tango(void)
{
return rc_map_register(&tango_map);
}
static void __exit exit_rc_map_tango(void)
{
rc_map_unregister(&tango_map);
}
module_init(init_rc_map_tango)
module_exit(exit_rc_map_tango)
MODULE_AUTHOR("Sigma Designs");
MODULE_LICENSE("GPL");