summaryrefslogtreecommitdiff
path: root/lib/efi_loader
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:39:41 -0700
committerTom Rini <trini@konsulko.com>2023-02-09 16:32:26 -0500
commit5cf9952e6995d16dbde60ca0adf244105f53ff01 (patch)
tree2671efca105adc8d70418f18e06fdb5b174e10d7 /lib/efi_loader
parentdeda5d5ecd440685e0c07fb6322ff6faa855a1be (diff)
Correct SPL use of EFI_DEVICE_PATH_UTIL
This converts 1 usage of this option to the non-SPL form, since there is no SPL_EFI_DEVICE_PATH_UTIL defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r--lib/efi_loader/efi_root_node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_root_node.c b/lib/efi_loader/efi_root_node.c
index a4eb6f493d..09699b2968 100644
--- a/lib/efi_loader/efi_root_node.c
+++ b/lib/efi_loader/efi_root_node.c
@@ -58,7 +58,7 @@ efi_status_t efi_root_node_register(void)
&efi_guid_device_path_to_text_protocol,
&efi_device_path_to_text,
#endif
-#if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_UTIL)
+#if IS_ENABLED(CONFIG_EFI_DEVICE_PATH_UTIL)
/* Device path utilities protocol */
&efi_guid_device_path_utilities_protocol,
&efi_device_path_utilities,