]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: ghash,poly1305 - select CRYPTO_HASH where needed
authorArnd Bergmann <arnd@arndb.de>
Mon, 25 Jan 2016 16:51:21 +0000 (17:51 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 26 Jan 2016 14:27:31 +0000 (22:27 +0800)
commitbac873677eb3e30bd907165c5653a9337836b9c0
tree3289870b26d44107a4a320914f996aeea4b53910
parent56e49f750b2e3e82e10899e943d7eb97bd10dae5
crypto: ghash,poly1305 - select CRYPTO_HASH where needed

The ghash and poly1305 hash implementations can be enabled when
CONFIG_CRYPTO_HASH is turned off, causing a link error:

crypto/built-in.o: In function `ghash_mod_init':
(.init.text+0xd0): undefined reference to `crypto_register_shash'
crypto/built-in.o: In function `ghash_mod_exit':
(.exit.text+0xb4): undefined reference to `crypto_unregister_shash'
crypto/built-in.o: In function `poly1305_mod_init':
(.init.text+0xb4): undefined reference to `crypto_register_shash'
crypto/built-in.o: In function `poly1305_mod_exit':
(.exit.text+0x98): undefined reference to `crypto_unregister_shash'

This adds an explicit 'select', like all other hashes have it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/Kconfig