From: Stefan Roese Date: Thu, 26 Nov 2015 12:38:15 +0000 (+0100) Subject: common/Makefile: Compile fdt_support is enabled in SPL X-Git-Tag: v2016.01-rc2~27 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=63ce348d275cddf17efa1b1c1609f214847b4643;p=u-boot common/Makefile: Compile fdt_support is enabled in SPL When CONFIG_SPL_OF_TRANSLATE is enabled fdt_support.c needs to get compiled. Otherwise fdt_translate_address() is missing which is needed in dev_get_addr(). Signed-off-by: Stefan Roese Cc: Simon Glass Acked-by: Simon Glass --- diff --git a/common/Makefile b/common/Makefile index d8dc892f72..2a1d9f8331 100644 --- a/common/Makefile +++ b/common/Makefile @@ -227,6 +227,7 @@ ifdef CONFIG_SPL_BUILD obj-$(CONFIG_ENV_IS_IN_FLASH) += env_flash.o obj-$(CONFIG_SPL_YMODEM_SUPPORT) += xyzModem.o obj-$(CONFIG_SPL_NET_SUPPORT) += miiphyutil.o +obj-$(CONFIG_SPL_OF_TRANSLATE) += fdt_support.o ifdef CONFIG_SPL_USB_HOST_SUPPORT obj-$(CONFIG_SPL_USB_SUPPORT) += usb.o usb_hub.o obj-$(CONFIG_USB_STORAGE) += usb_storage.o