summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-08-29 16:06:15 +0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:55:41 -0700
commitb74ee7097fc1306e1f66c269c7c533e50531de3c (patch)
tree21c3d5f2b138ca1291c3dfd8cbc57e17f9a878ff
parenta7a8e2ea7b0ccfeb0b2182437684ba8d0a876b76 (diff)
downloadlinux-crypto-b74ee7097fc1306e1f66c269c7c533e50531de3c.tar.gz
linux-crypto-b74ee7097fc1306e1f66c269c7c533e50531de3c.zip
[CRYPTO] api: Move scatterwalk into algapi
The scatterwalk code is only used by algorithms that can be built as a module. Therefore we can move it into algapi. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 9821c5ba..7e1d5b89 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -2,10 +2,10 @@
# Cryptographic API
#
-obj-$(CONFIG_CRYPTO) += api.o scatterwalk.o cipher.o digest.o compress.o
+obj-$(CONFIG_CRYPTO) += api.o cipher.o digest.o compress.o
crypto_algapi-$(CONFIG_PROC_FS) += proc.o
-crypto_algapi-objs := algapi.o $(crypto_algapi-y)
+crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y)
obj-$(CONFIG_CRYPTO_ALGAPI) += crypto_algapi.o
obj-$(CONFIG_CRYPTO_ABLKCIPHER) += ablkcipher.o