mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 15:11:16 +00:00
[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>
This commit is contained in:
parent
2de98e7544
commit
e962a653f3
1 changed files with 2 additions and 2 deletions
|
@ -2,10 +2,10 @@
|
||||||
# Cryptographic API
|
# 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-$(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_ALGAPI) += crypto_algapi.o
|
||||||
|
|
||||||
obj-$(CONFIG_CRYPTO_ABLKCIPHER) += ablkcipher.o
|
obj-$(CONFIG_CRYPTO_ABLKCIPHER) += ablkcipher.o
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue