From: Simon Glass Date: Mon, 30 Sep 2024 01:49:25 +0000 (-0600) Subject: boot: Drop unnecessary ifdef for LOAD_FIT X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=95a720e054ffad4e01d2a839d4ebadd91fe24032;p=u-boot.git boot: Drop unnecessary ifdef for LOAD_FIT Use the normal SPL_TPL_ approach for this option. Signed-off-by: Simon Glass Reviewed-by: Tom Rini --- diff --git a/boot/Makefile b/boot/Makefile index f4675d6ffd..40e2337de0 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -58,9 +58,7 @@ obj-$(CONFIG_$(SPL_TPL_)FIT_CIPHER) += image-cipher.o obj-$(CONFIG_CMD_ADTIMG) += image-android-dt.o -ifdef CONFIG_SPL_BUILD -obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o -endif +obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += common_fit.o obj-$(CONFIG_$(SPL_TPL_)EXPO) += expo.o scene.o expo_build.o obj-$(CONFIG_$(SPL_TPL_)EXPO) += scene_menu.o scene_textline.o