Correct SPL use of CMD_HASH
This converts 1 usage of this option to the non-SPL form, since there is no SPL_CMD_HASH defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
f8daba4486
commit
bdb133ade2
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ static struct hash_algo hash_algo[] = {
|
||||||
|
|
||||||
/* Try to minimize code size for boards that don't want much hashing */
|
/* Try to minimize code size for boards that don't want much hashing */
|
||||||
#if CONFIG_IS_ENABLED(SHA256) || CONFIG_IS_ENABLED(CMD_SHA1SUM) || \
|
#if CONFIG_IS_ENABLED(SHA256) || CONFIG_IS_ENABLED(CMD_SHA1SUM) || \
|
||||||
CONFIG_IS_ENABLED(CRC32_VERIFY) || CONFIG_IS_ENABLED(CMD_HASH) || \
|
CONFIG_IS_ENABLED(CRC32_VERIFY) || IS_ENABLED(CONFIG_CMD_HASH) || \
|
||||||
CONFIG_IS_ENABLED(SHA384) || CONFIG_IS_ENABLED(SHA512)
|
CONFIG_IS_ENABLED(SHA384) || CONFIG_IS_ENABLED(SHA512)
|
||||||
#define multi_hash() 1
|
#define multi_hash() 1
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue