aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/keymap/keymap_us.c
blob: 6432474e21241238c1e123e2e277e7e87c4a1188 (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
 *
 * "us" keyboard mapping
 *
 * This file is automatically generated; do not edit
 *
 */

FILE_LICENCE ( PUBLIC_DOMAIN );

#include <ipxe/keymap.h>

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

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

/** "us" keyboard map */
struct keymap us_keymap __keymap = {
	.name = "us",
	.basic = us_basic,
	.altgr = us_altgr,
};