diff options
| author | Simon Glass <[email protected]> | 2021-07-14 17:05:35 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-07-16 12:58:55 -0400 |
| commit | 14f061dcb158a4ffbf09df10f2ac2d37c157437c (patch) | |
| tree | 2b7569785f88f4715dad5ea83b33a4057800d985 /include | |
| parent | 0ad75696d078e56ca8e4d09a875de8107590ab8a (diff) | |
image: Drop IMAGE_ENABLE_SHAxxx
We already have a host Kconfig for these SHA options. Use
CONFIG_IS_ENABLED(SHAxxx) directly in the code shared with the host build,
so we can drop the unnecessary indirections.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Alexandru Gagniuc <[email protected]>
Signed-off-by: Alexandru Gagniuc <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/image.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/image.h b/include/image.h index bca9033e7f0..dbb9bd0174a 100644 --- a/include/image.h +++ b/include/image.h @@ -81,27 +81,6 @@ struct fdt_region; #define IMAGE_ENABLE_MD5 0 #endif -#if defined(CONFIG_FIT_SHA256) || \ - defined(CONFIG_SPL_FIT_SHA256) -#define IMAGE_ENABLE_SHA256 1 -#else -#define IMAGE_ENABLE_SHA256 0 -#endif - -#if defined(CONFIG_FIT_SHA384) || \ - defined(CONFIG_SPL_FIT_SHA384) -#define IMAGE_ENABLE_SHA384 1 -#else -#define IMAGE_ENABLE_SHA384 0 -#endif - -#if defined(CONFIG_FIT_SHA512) || \ - defined(CONFIG_SPL_FIT_SHA512) -#define IMAGE_ENABLE_SHA512 1 -#else -#define IMAGE_ENABLE_SHA512 0 -#endif - #endif /* IMAGE_ENABLE_FIT */ #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
