1
0
Fork 0

LF-804 crypto: tls - fix module autoloading

tls module lacks an alias, thus cannot be auto-loaded.

Note that all crypto modules have to be "protected" under the namespace
created by the "crypto-" prefix:
commit 5d26a105b5 ("crypto: prefix module autoloading with "crypto-"")

Fixes: a61cc4776299 ("crypto: add support for TLS 1.0 record encryption")
Signed-off-by: Horia Geantă <horia.geanta@nxp.com>
Reviewed-by: Valentin Ciocoi Radulescu <valentin.ciocoi@nxp.com>
5.4-rM2-2.2.x-imx-squashed
Horia Geantă 2020-02-26 14:47:46 +02:00
parent fd14051261
commit 862ea84e94
1 changed files with 1 additions and 0 deletions

View File

@ -605,3 +605,4 @@ module_exit(crypto_tls_module_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("TLS 1.0 record encryption");
MODULE_ALIAS_CRYPTO("tls10");