diff options
author | Andrew F. Davis <afd@ti.com> | 2019-01-17 13:43:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-26 08:13:54 -0500 |
commit | 6536ca4d6676bf38e50784298e713edc30b9cde9 (patch) | |
tree | 5519cea036d781633acfdf25ae10a41eb6c41b29 /include/configs/dra7xx_evm.h | |
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 'include/configs/dra7xx_evm.h')
-rw-r--r-- | include/configs/dra7xx_evm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index 2d8758db754..f36a9c3e08c 100644 --- a/include/configs/dra7xx_evm.h +++ b/include/configs/dra7xx_evm.h @@ -53,7 +53,7 @@ #ifdef CONFIG_SPL_BUILD #undef CONFIG_CMD_BOOTD -#ifdef CONFIG_SPL_DFU_SUPPORT +#ifdef CONFIG_SPL_DFU #define CONFIG_SPL_LOAD_FIT_ADDRESS 0x80200000 #define DFUARGS \ "dfu_bufsiz=0x10000\0" \ |