On Mon, Jun 27, 2022 at 09:51:44PM +0200, Vladis Dronov wrote: > > diff --git a/crypto/fips.c b/crypto/fips.c > index 7b1d8caee669..d820f83cb878 100644 > --- a/crypto/fips.c > +++ b/crypto/fips.c > @@ -30,13 +30,37 @@ static int fips_enable(char *str) > > __setup("fips=", fips_enable); > > +#define FIPS_MODULE_NAME CONFIG_CRYPTO_FIPS_NAME > +#ifdef CONFIG_CRYPTO_FIPS_CUSTOM_VERSION > +#define FIPS_MODULE_VERSION CONFIG_CRYPTO_FIPS_VERSION > +#else > +#define FIPS_MODULE_VERSION UTS_RELEASE > +#endif > + > +static char fips_name[] = FIPS_MODULE_NAME; > +static char fips_version[] = FIPS_MODULE_VERSION; This doesn't compile for me because you need to include generated/utsrelease.h. Cheers, -- Email: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt