diff options
author | Simon Glass <sjg@chromium.org> | 2021-07-14 17:05:32 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-16 12:58:55 -0400 |
commit | 1e52db6799172cdd1612e0394da050d29164a13f (patch) | |
tree | e8e6c2b4978c5f71feac3df31812c271a4382c89 /include/image.h | |
parent | ad74aed11e1dfe39b7f32dd855859abaf51d33f0 (diff) | |
download | u-boot-1e52db6799172cdd1612e0394da050d29164a13f.tar.gz |
Kconfig: Rename SPL_CRC32_SUPPORT to SPL_CRC32
Drop the _SUPPORT suffix so we can use CONFIG_IS_ENABLED() with this
option.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.h b/include/image.h index b242007b9c..e2037d3159 100644 --- a/include/image.h +++ b/include/image.h @@ -62,7 +62,7 @@ struct fdt_region; #include <linux/libfdt.h> #include <fdt_support.h> # ifdef CONFIG_SPL_BUILD -# ifdef CONFIG_SPL_CRC32_SUPPORT +# ifdef CONFIG_SPL_CRC32 # define IMAGE_ENABLE_CRC32 1 # endif # ifdef CONFIG_SPL_MD5_SUPPORT |