// SPDX-License-Identifier: GPL-2.0+ // msi-tvanywhere-plus.h - Keytable for msi_tvanywhere_plus Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Keycodes for remote on the MSI TV@nywhere Plus. The controller IC on the card is marked "KS003". The controller is I2C at address 0x30, but does not seem to respond to probes until a read is performed from a valid device. I don't know why... Note: This remote may be of similar or identical design to the Pixelview remote (?). The raw codes and duplicate button codes appear to be the same. Henry Wong <[email protected]> Some changes to formatting and keycodes by Mark Schultz <[email protected]> */ static struct rc_map_table msi_tvanywhere_plus[] = …; static struct rc_map_list msi_tvanywhere_plus_map = …; static int __init init_rc_map_msi_tvanywhere_plus(void) { … } static void __exit exit_rc_map_msi_tvanywhere_plus(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;