From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex G. Date: Fri, 14 May 2021 16:31:18 -0500 Subject: [PATCH v2 29/50] Kconfig: Rename SPL_MD5_SUPPORT to SPL_MD5 In-Reply-To: <20210506082420.v2.29.I1ca8372a52bffdbf5c461f26e099fcd61d01fdac@changeid> References: <20210506142438.1310977-1-sjg@chromium.org> <20210506082420.v2.29.I1ca8372a52bffdbf5c461f26e099fcd61d01fdac@changeid> Message-ID: <4e3b162e-6dfe-c772-80c3-47586ac3b13a@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 5/6/21 9:24 AM, Simon Glass wrote: > Drop the _SUPPORT suffix so we can use CONFIG_IS_ENABLED() with this > option. > > Signed-off-by: Simon Glass Reviewed-by: Alexandru Gagniuc > --- > > (no changes since v1) > > common/spl/Kconfig | 2 +- > include/image.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/common/spl/Kconfig b/common/spl/Kconfig > index 8cd41eb1b29..e6d00caaa85 100644 > --- a/common/spl/Kconfig > +++ b/common/spl/Kconfig > @@ -418,7 +418,7 @@ config SPL_CRC32 > for detected accidental image corruption. For secure applications you > should consider SHA1 or SHA256. > > -config SPL_MD5_SUPPORT > +config SPL_MD5 > bool "Support MD5" > depends on SPL_FIT > help > diff --git a/include/image.h b/include/image.h > index e68c2cbf621..e1e4bf6806f 100644 > --- a/include/image.h > +++ b/include/image.h > @@ -47,7 +47,7 @@ struct fdt_region; > #include > #include > # ifdef CONFIG_SPL_BUILD > -# ifdef CONFIG_SPL_MD5_SUPPORT > +# ifdef CONFIG_SPL_MD5 > # define IMAGE_ENABLE_MD5 1 > # endif > # ifdef CONFIG_SPL_FIT_SHA1 >