diff options
author | Bin Meng | 2018-06-22 01:38:28 -0700 |
---|---|---|
committer | Bin Meng | 2018-06-24 08:56:04 +0800 |
commit | 7c98ca10eae855571b16cddb19d461a981052730 (patch) | |
tree | fe13f69ea00172a3da2bc01a95309d560373f3bc /lib/efi/efi_stub.c | |
parent | 5460fd076263a461442e4beb3215466536166026 (diff) |
efi: stub: Move the use_uart assignment immediately after exit_boot_services() call
The use_uart assignment should follow immediately after the call to
exit_boot_services(), in case we want some debug output after that.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/efi/efi_stub.c')
-rw-r--r-- | lib/efi/efi_stub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi/efi_stub.c b/lib/efi/efi_stub.c index 262fc56562f..1b495ec81b2 100644 --- a/lib/efi/efi_stub.c +++ b/lib/efi/efi_stub.c @@ -361,14 +361,14 @@ efi_status_t EFIAPI efi_main(efi_handle_t image, } } + /* The EFI UART won't work now, switch to a debug one */ + use_uart = true; + map.version = version; map.desc_size = desc_size; add_entry_addr(priv, EFIET_MEMORY_MAP, &map, sizeof(map), desc, size); add_entry_addr(priv, EFIET_END, NULL, 0, 0, 0); - /* The EFI UART won't work now, switch to a debug one */ - use_uart = true; - memcpy((void *)CONFIG_SYS_TEXT_BASE, _binary_u_boot_bin_start, (ulong)_binary_u_boot_bin_end - (ulong)_binary_u_boot_bin_start); |