aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2014-07-04 10:15:08 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2014-07-04 10:15:08 -0400
commitf2c89a10de4fd123a3d15223d26994f2fe1b95d8 (patch)
tree4d0152863efebece8da6ffa9796173fcb67e7702 /crypto/Makefile
parent8c98716601bc05091ff49aa8ebf5299a0c6604a0 (diff)
crypto: drbg - Use Kconfig to ensure at least one RNG option is set
This patch removes the build-time test that ensures at least one RNG is set. Instead we will simply not build drbg if no options are set through Kconfig. This also fixes a typo in the name of the Kconfig option CRYTPO_DRBG (should be CRYPTO_DRBG). Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index bfa94fad315b..cfa57b3f5a4d 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -92,7 +92,7 @@ obj-$(CONFIG_CRYPTO_842) += 842.o
92obj-$(CONFIG_CRYPTO_RNG2) += rng.o 92obj-$(CONFIG_CRYPTO_RNG2) += rng.o
93obj-$(CONFIG_CRYPTO_RNG2) += krng.o 93obj-$(CONFIG_CRYPTO_RNG2) += krng.o
94obj-$(CONFIG_CRYPTO_ANSI_CPRNG) += ansi_cprng.o 94obj-$(CONFIG_CRYPTO_ANSI_CPRNG) += ansi_cprng.o
95obj-$(CONFIG_CRYTPO_DRBG) += drbg.o 95obj-$(CONFIG_CRYPTO_DRBG) += drbg.o
96obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o 96obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o
97obj-$(CONFIG_CRYPTO_GHASH) += ghash-generic.o 97obj-$(CONFIG_CRYPTO_GHASH) += ghash-generic.o
98obj-$(CONFIG_CRYPTO_USER_API) += af_alg.o 98obj-$(CONFIG_CRYPTO_USER_API) += af_alg.o