aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/efi.h
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2020-03-26 09:24:14 +0100
committerArd Biesheuvel <ardb@kernel.org>2020-04-24 14:52:16 +0200
commit4e9a0f73f030e19a9259b69a7079021048e1f904 (patch)
tree187c8e63d908a1a7ca4c6b81e865dc382afc0ffd /include/linux/efi.h
parentefi/libstub/x86: Avoid getter function for efi_is64 (diff)
downloadwireguard-linux-4e9a0f73f030e19a9259b69a7079021048e1f904.tar.xz
wireguard-linux-4e9a0f73f030e19a9259b69a7079021048e1f904.zip
efi: Clean up config table description arrays
Increase legibility by adding whitespace to the efi_config_table_type_t arrays that describe which EFI config tables we look for when going over the firmware provided list. While at it, replace the 'name' char pointer with a char array, which is more space efficient on relocatable 64-bit kernels, as it avoids a 8 byte pointer and the associated relocation data (24 bytes when using RELA format) Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'include/linux/efi.h')
-rw-r--r--include/linux/efi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/efi.h b/include/linux/efi.h
index 251f1f783cdf..9b7c7ec319ac 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -379,8 +379,8 @@ typedef union {
typedef struct {
efi_guid_t guid;
- const char *name;
unsigned long *ptr;
+ const char name[16];
} efi_config_table_type_t;
#define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL)