summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-04-22 11:42:35 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2015-04-23 14:18:07 +0800
commit0391cb165ed18d52f45d5144ee338ac44c851704 (patch)
tree1a9652d77da088262645e429db6d8897df49a58b /crypto
parent74c02aa0ec083bdf55dc43b2a2e7da3f7dbfb7ad (diff)
downloadlinux-crypto-0391cb165ed18d52f45d5144ee338ac44c851704.tar.gz
linux-crypto-0391cb165ed18d52f45d5144ee338ac44c851704.zip
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: Herbert Xu <herbert@gondor.apana.org.au> Acked-by: Stephan Mueller <smueller@chronox.de>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/drbg.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/drbg.c b/crypto/drbg.c
index ec6bffd7..23d444ed 100644
--- a/crypto/drbg.c
+++ b/crypto/drbg.c
@@ -1707,7 +1707,6 @@ static int drbg_kcapi_seed(struct crypto_rng *tfm,
*/
static inline int __init drbg_healthcheck_sanity(void)
{
-#ifdef CONFIG_CRYPTO_FIPS
int len = 0;
#define OUTBUFLEN 16
unsigned char buf[OUTBUFLEN];
@@ -1775,9 +1774,6 @@ static inline int __init drbg_healthcheck_sanity(void)
outbuf:
kzfree(drbg);
return rc;
-#else /* CONFIG_CRYPTO_FIPS */
- return 0;
-#endif /* CONFIG_CRYPTO_FIPS */
}
static struct rng_alg drbg_algs[22];