// SPDX-License-Identifier: GPL-2.0-or-later /* * MSI DIGIVOX mini III remote controller keytable * * Copyright (C) 2013 Antti Palosaari <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> /* * Derived from MSI DIGIVOX mini III remote (rc-msi-digivox-iii.c) * * Differences between these remotes are: * * 1) scancode 0x61d601 is mapped to different button: * MSI DIGIVOX mini III "Source" = KEY_VIDEO * Reddo "EPG" = KEY_EPG * * 2) Reddo remote has less buttons. Missing buttons are: colored buttons, * navigation buttons and main power button. */ static struct rc_map_table reddo[] = …; static struct rc_map_list reddo_map = …; static int __init init_rc_map_reddo(void) { … } static void __exit exit_rc_map_reddo(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;