Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <fengguang.wu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

+1 -1
+1 -1
crypto/Makefile
··· 46 46 obj-$(CONFIG_CRYPTO_HMAC) += hmac.o 47 47 obj-$(CONFIG_CRYPTO_VMAC) += vmac.o 48 48 obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o 49 - obj-$(CONFIG_CRYPTO_NULL) += crypto_null.o 49 + obj-$(CONFIG_CRYPTO_NULL2) += crypto_null.o 50 50 obj-$(CONFIG_CRYPTO_MD4) += md4.o 51 51 obj-$(CONFIG_CRYPTO_MD5) += md5.o 52 52 obj-$(CONFIG_CRYPTO_RMD128) += rmd128.o