From: Herbert Xu Date: Mon, 17 Aug 2015 09:45:27 +0000 (+0800) Subject: crypto: null - Use NULL2 in Makefile X-Git-Tag: v5.15~14878^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a26bcb04861db3061bb7db11ce905aa037111f81;p=platform%2Fkernel%2Flinux-starfive.git crypto: null - Use NULL2 in Makefile The Kconfig option NULL2 has been added as CRYPTO_MANAGER now depends indirectly on NULL2. However, the Makefile was not updated to use the new option, resulting in potential build failures when only NULL2 is enabled. Fixes: 149a39717dcc ("crypto: aead - Add type-safe geniv init/exit helpers") Reported-by: kbuild test robot Signed-off-by: Herbert Xu --- diff --git a/crypto/Makefile b/crypto/Makefile index a16a7e7..f6229ae 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -46,7 +46,7 @@ obj-$(CONFIG_CRYPTO_CMAC) += cmac.o obj-$(CONFIG_CRYPTO_HMAC) += hmac.o obj-$(CONFIG_CRYPTO_VMAC) += vmac.o obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o -obj-$(CONFIG_CRYPTO_NULL) += crypto_null.o +obj-$(CONFIG_CRYPTO_NULL2) += crypto_null.o obj-$(CONFIG_CRYPTO_MD4) += md4.o obj-$(CONFIG_CRYPTO_MD5) += md5.o obj-$(CONFIG_CRYPTO_RMD128) += rmd128.o