mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
The aes driver registers both skcipher and aead algorithms,
but when aead is not enabled this causes a link failure:
s390-linux-ld: arch/s390/crypto/aes_s390.o: in function `aes_s390_fini':
arch/s390/crypto/aes_s390.c:969:(.text+0x115e): undefined reference to `crypto_unregister_aead'
s390-linux-ld: arch/s390/crypto/aes_s390.o: in function `aes_s390_init':
arch/s390/crypto/aes_s390.c:1028:(.init.text+0x294): undefined reference to `crypto_register_aead'
Add the missing 'select' statement.
Fixes:
|
||
|---|---|---|
| .. | ||
| aes_s390.c | ||
| arch_random.c | ||
| hmac_s390.c | ||
| Kconfig | ||
| Makefile | ||
| paes_s390.c | ||
| phmac_s390.c | ||
| prng.c | ||