From: Herbert Xu Date: Wed, 29 Aug 2007 08:06:15 +0000 (+0800) Subject: [CRYPTO] api: Move scatterwalk into algapi X-Git-Tag: accepted/tizen/common/20141203.182822~27905^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e962a653f3146330d99aefa5adadeaed60bc9bb5;p=platform%2Fkernel%2Flinux-arm64.git [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 --- diff --git a/crypto/Makefile b/crypto/Makefile index 9821c5b..7e1d5b8 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