diff options
author | Andrew F. Davis | 2019-01-17 13:43:02 -0600 |
---|---|---|
committer | Tom Rini | 2019-01-26 08:13:54 -0500 |
commit | 6536ca4d6676bf38e50784298e713edc30b9cde9 (patch) | |
tree | 5519cea036d781633acfdf25ae10a41eb6c41b29 /common/spl/Makefile | |
parent | 70dbbd7269c2fc1c096830e448a97862ad87fd2a (diff) |
spl: Kconfig: Drop the _SUPPORT postfix from SPL_DFU
The symbol CONFIG_SPL_DFU_SUPPORT in SPL build has the same
meaning as CONFIG_DFU in regular U-Boot. Drop the _SUPPORT
to allow for cleaner use in code.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Acked-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r-- | common/spl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile index a130a5be4b0..6f8d7599ae1 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -26,7 +26,7 @@ obj-$(CONFIG_$(SPL_TPL_)USB_SUPPORT) += spl_usb.o obj-$(CONFIG_$(SPL_TPL_)FAT_SUPPORT) += spl_fat.o obj-$(CONFIG_$(SPL_TPL_)EXT_SUPPORT) += spl_ext.o obj-$(CONFIG_$(SPL_TPL_)SATA_SUPPORT) += spl_sata.o -obj-$(CONFIG_$(SPL_TPL_)DFU_SUPPORT) += spl_dfu.o +obj-$(CONFIG_$(SPL_TPL_)DFU) += spl_dfu.o obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o |