diff options
author | Peng Fan | 2020-12-28 20:13:11 +0800 |
---|---|---|
committer | Tom Rini | 2021-01-16 14:49:09 -0500 |
commit | 52e77726ef94f6c800be52a725072b738a452273 (patch) | |
tree | eec6858b3f0d349e1f619ab055c4e3709006d1f9 /common | |
parent | 1d55eb1544f7fcbbc8b39d6f445ba74788bf94bf (diff) |
common: Makefile: drop duplicated line
obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += xyzModem.o is there,
no need obj-$(CONFIG_SPL_YMODEM_SUPPORT) += xyzModem.o
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/Makefile b/common/Makefile index bcf352d0165..daeea67cf29 100644 --- a/common/Makefile +++ b/common/Makefile @@ -68,7 +68,6 @@ obj-$(CONFIG_DFU_OVER_USB) += dfu.o endif obj-$(CONFIG_SPL_HASH_SUPPORT) += hash.o obj-$(CONFIG_TPL_HASH_SUPPORT) += hash.o -obj-$(CONFIG_SPL_YMODEM_SUPPORT) += xyzModem.o obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o obj-$(CONFIG_SPL_NET_SUPPORT) += miiphyutil.o obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o |