diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-03-19 18:21:58 +0000 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-07-03 18:03:56 +0200 |
commit | 15b1bf10d1a1b21ecbf20169e30688df1c8e34be (patch) | |
tree | 982e6af43e99d68633adfc2722f25c39ea122488 /lib | |
parent | 3a92f85f2121bb76061758e2830a5a1572729bcf (diff) | |
download | u-boot-15b1bf10d1a1b21ecbf20169e30688df1c8e34be.zip u-boot-15b1bf10d1a1b21ecbf20169e30688df1c8e34be.tar.gz u-boot-15b1bf10d1a1b21ecbf20169e30688df1c8e34be.tar.bz2 |
efi_loader: export initialization state
Export the UEFI sub-system initialization state. This will allow to treat
the setting of UEFI variables during and after initialization differently.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_setup.c b/lib/efi_loader/efi_setup.c index 671f6da..a3b05a4 100644 --- a/lib/efi_loader/efi_setup.c +++ b/lib/efi_loader/efi_setup.c @@ -11,7 +11,7 @@ #define OBJ_LIST_NOT_INITIALIZED 1 -static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED; +efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED; /* * Allow unaligned memory access. |