This repository has been archived on 2026-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ubports_kernel_google_msm/include/media/keycodes/empty.h
Mauro Carvalho Chehab 77b7422d48 V4L/DVB: ir-common: move IR tables from ir-keymaps.c to a separate file
Instead of having one big file with lots of keytables, create one include
file for each IR keymap.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-05-19 12:56:48 -03:00

21 lines
580 B
C

/* empty.h - Keytable for empty Remote Controller
*
* Imported from ir-keymaps.c
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
/* empty keytable, can be used as placeholder for not-yet created keytables */
#ifdef IR_KEYMAPS
static struct ir_scancode empty[] = {
{ 0x2a, KEY_COFFEE },
};
DEFINE_LEGACY_IR_KEYTABLE(empty);
#else
DECLARE_IR_KEYTABLE(empty);
#endif