]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: Use %pD to log device-path instead of local efi_dp_str()
authorMasami Hiramatsu <masami.hiramatsu@linaro.org>
Wed, 14 Jul 2021 05:19:13 +0000 (14:19 +0900)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 18 Jul 2021 12:43:56 +0000 (14:43 +0200)
Use %pD to log device-path instead of using efi_dp_str() and
efi_free_pool() locally in find_boot_device().
This is a cleanup patch, no feature update nor fix.

Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_capsule.c

index b878e71438b84c775365218d8a2925a30cd22d0c..a09c5705f1191ac59ffc1959bd677c35bd491ea0 100644 (file)
@@ -691,11 +691,7 @@ skip:
        }
 found:
        if (boot_dev) {
-               u16 *path_str;
-
-               path_str = efi_dp_str(boot_dev);
-               log_debug("Boot device %ls\n", path_str);
-               efi_free_pool(path_str);
+               log_debug("Boot device %pD\n", boot_dev);
 
                volume = efi_fs_from_path(boot_dev);
                if (!volume)