summaryrefslogtreecommitdiff
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2009-07-12 13:58:04 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2009-07-14 12:58:07 +0800
commitafcaff91ba95ec1128fea46503ad04113576cf97 (patch)
treece3639035ca80f44a8d1f25d647d5a68a0610655 /crypto/Makefile
parent4491f4107f611239c60c5cd8e6bc11825ac6224e (diff)
downloadlinux-crypto-afcaff91ba95ec1128fea46503ad04113576cf97.tar.gz
linux-crypto-afcaff91ba95ec1128fea46503ad04113576cf97.zip
crypto: hash - Remove legacy hash/digest implementaion
This patch removes the implementation of hash and digest now that no algorithms use them anymore. The interface though will remain until the users are converted across. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 673d9f7c..3c961b4d 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -3,7 +3,7 @@
#
obj-$(CONFIG_CRYPTO) += crypto.o
-crypto-objs := api.o cipher.o digest.o compress.o
+crypto-objs := api.o cipher.o compress.o
obj-$(CONFIG_CRYPTO_WORKQUEUE) += crypto_wq.o
@@ -22,7 +22,6 @@ obj-$(CONFIG_CRYPTO_BLKCIPHER2) += chainiv.o
obj-$(CONFIG_CRYPTO_BLKCIPHER2) += eseqiv.o
obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o
-crypto_hash-objs := hash.o
crypto_hash-objs += ahash.o
crypto_hash-objs += shash.o
obj-$(CONFIG_CRYPTO_HASH2) += crypto_hash.o