]> git.sur5r.net Git - u-boot/commitdiff
x86: efi: payload: Minor clean up on error message output
authorBin Meng <bmeng.cn@gmail.com>
Sun, 10 Jun 2018 13:25:09 +0000 (06:25 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Wed, 13 Jun 2018 01:50:57 +0000 (09:50 +0800)
If GetMemoryMap() fails, we really want to know EFI_BITS_PER_LONG
instead of BITS_PER_LONG. A space and LF are added in places where
error message is output to improve readability.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
lib/efi/efi_stub.c

index 3138739ee56a154a5e58d7af8a2da072d953bbd9..09023a2f67a525ae6a83066de5c4c7b9e34e36b6 100644 (file)
@@ -281,7 +281,8 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table)
 
        ret = efi_init(priv, "Payload", image, sys_table);
        if (ret) {
-               printhex2(ret); puts(" efi_init() failed\n");
+               printhex2(ret);
+               puts(" efi_init() failed\n");
                return ret;
        }
        global_priv = priv;
@@ -294,7 +295,8 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table)
        size = 0;
        ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version);
        if (ret != EFI_BUFFER_TOO_SMALL) {
-               printhex2(BITS_PER_LONG);
+               printhex2(EFI_BITS_PER_LONG);
+               putc(' ');
                printhex2(ret);
                puts(" No memory map\n");
                return ret;
@@ -303,7 +305,7 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table)
        desc = efi_malloc(priv, size, &ret);
        if (!desc) {
                printhex2(ret);
-               puts(" No memory for memory descriptor");
+               puts(" No memory for memory descriptor\n");
                return ret;
        }
        ret = setup_info_table(priv, size + 128);