diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-04-21 12:39:15 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-04-24 06:53:40 +0200 |
commit | a07ee3c198df216b3111c1dc8f79410e3b0bcc4b (patch) | |
tree | 1081b724cf28085711464349f0e65045d1930d49 /lib | |
parent | 3c73c5eb60d0bca4b30a579a84d8e240964223de (diff) | |
download | u-boot-a07ee3c198df216b3111c1dc8f79410e3b0bcc4b.tar.gz u-boot-a07ee3c198df216b3111c1dc8f79410e3b0bcc4b.tar.bz2 u-boot-a07ee3c198df216b3111c1dc8f79410e3b0bcc4b.zip |
efi_loader: missing include in efi_string.c
To avoid diverging function definitions we need to include efi_loader.h.
Fixes: fe179d7fb5c1 ("efi_loader: Add size checks to efi_create_indexed_name()")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_string.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_string.c b/lib/efi_loader/efi_string.c index 9627242288..a3b8edf5a8 100644 --- a/lib/efi_loader/efi_string.c +++ b/lib/efi_loader/efi_string.c @@ -7,6 +7,7 @@ #include <common.h> #include <charset.h> +#include <efi_loader.h> /** * efi_create_indexed_name - create a string name with an index |