summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorHoria Geantă <horia.geanta@nxp.com>2020-02-26 14:47:46 +0200
committerHoria Geantă <horia.geanta@nxp.com>2020-02-27 15:28:07 +0200
commit862ea84e94038292d2127cd52e35c4fac99b24d7 (patch)
treef953b16cabcdd7d9380526e92afd57d66ae9014d /crypto
parentfd140512618abf82bc51088070e6e4efefca7d40 (diff)
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 5d26a105b5a7 ("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>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tls.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/tls.c b/crypto/tls.c
index cb29194e9eb2..fb21bfbaf9ab 100644
--- a/crypto/tls.c
+++ b/crypto/tls.c
@@ -605,3 +605,4 @@ module_exit(crypto_tls_module_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("TLS 1.0 record encryption");
+MODULE_ALIAS_CRYPTO("tls10");