diff options
Diffstat (limited to 'qemu/roms/ipxe/src/include/ipxe/keymap.h')
-rw-r--r-- | qemu/roms/ipxe/src/include/ipxe/keymap.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/qemu/roms/ipxe/src/include/ipxe/keymap.h b/qemu/roms/ipxe/src/include/ipxe/keymap.h deleted file mode 100644 index 0f1b0c656..000000000 --- a/qemu/roms/ipxe/src/include/ipxe/keymap.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef _IPXE_KEYMAP_H -#define _IPXE_KEYMAP_H - -/** - * @file - * - * Keyboard mappings - * - */ - -FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); - -#include <stdint.h> -#include <ipxe/tables.h> - -/** A keyboard mapping */ -struct key_mapping { - /** Character read from keyboard */ - uint8_t from; - /** Character to be used instead */ - uint8_t to; -} __attribute__ (( packed )); - -/** Keyboard mapping table */ -#define KEYMAP __table ( struct key_mapping, "keymap" ) - -/** Define a keyboard mapping */ -#define __keymap __table_entry ( KEYMAP, 01 ) - -#endif /* _IPXE_KEYMAP_H */ |