提交 b94e7dc5 编写于 作者: H Herbert Xu

crypto: drbg - Remove FIPS ifdef from drbg_healthcheck_sanity

This patch removes the unnecessary CRYPTO_FIPS ifdef from
drbg_healthcheck_sanity so that the code always gets checked
by the compiler.
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
Acked-by: NStephan Mueller <smueller@chronox.de>
上级 59afdc7b
...@@ -1707,7 +1707,6 @@ static int drbg_kcapi_seed(struct crypto_rng *tfm, ...@@ -1707,7 +1707,6 @@ static int drbg_kcapi_seed(struct crypto_rng *tfm,
*/ */
static inline int __init drbg_healthcheck_sanity(void) static inline int __init drbg_healthcheck_sanity(void)
{ {
#ifdef CONFIG_CRYPTO_FIPS
int len = 0; int len = 0;
#define OUTBUFLEN 16 #define OUTBUFLEN 16
unsigned char buf[OUTBUFLEN]; unsigned char buf[OUTBUFLEN];
...@@ -1775,9 +1774,6 @@ static inline int __init drbg_healthcheck_sanity(void) ...@@ -1775,9 +1774,6 @@ static inline int __init drbg_healthcheck_sanity(void)
outbuf: outbuf:
kzfree(drbg); kzfree(drbg);
return rc; return rc;
#else /* CONFIG_CRYPTO_FIPS */
return 0;
#endif /* CONFIG_CRYPTO_FIPS */
} }
static struct rng_alg drbg_algs[22]; static struct rng_alg drbg_algs[22];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册