aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/keymap/keymap_lt.c
blob: 5d6ee5a8cc748529a3f78017f9ba661e05e349a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** @file
 *
 * "lt" keyboard mapping
 *
 * This file is automatically generated; do not edit
 *
 */

FILE_LICENCE ( PUBLIC_DOMAIN );

#include <ipxe/keymap.h>

/** "lt" basic remapping */
static struct keymap_key lt_basic[] = {
	{ 0, 0 }
};

/** "lt" AltGr remapping */
static struct keymap_key lt_altgr[] = {
	{ 0, 0 }
};

/** "lt" keyboard map */
struct keymap lt_keymap __keymap = {
	.name = "lt",
	.basic = lt_basic,
	.altgr = lt_altgr,
};