aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/keymap/keymap_us.c
blob: b8e604a4838cc13ba3cb02184f5541e35507595e (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_default = {
	.name = "us",
	.basic = us_basic,
	.altgr = us_altgr,
};