diff options
author | Jussi Kivilinna <jussi.kivilinna@iki.fi> | 2013-09-03 16:26:49 +0300 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-01-29 15:44:53 +0100 |
commit | 1b6365b32854cf94aee0e4531e347b419dfc4885 (patch) | |
tree | e50278d03a349d281c988bdd27294f04e7322a65 | |
parent | d0a8ea21073b520c39ab577ed663baeff20a0fb4 (diff) | |
download | lwn-1b6365b32854cf94aee0e4531e347b419dfc4885.tar.gz lwn-1b6365b32854cf94aee0e4531e347b419dfc4885.zip |
crypto: sha256_ssse3 - use correct module alias for sha224
commit 7d444909a25ed4a9dbc546bf9528c8d2e3bf3752 upstream.
Commit a710f761f (crypto: sha256_ssse3 - add sha224 support) attempted to add
MODULE_ALIAS for SHA-224, but it ended up being "sha384", probably because
mix-up with previous commit 340991e30 (crypto: sha512_ssse3 - add sha384
support). Patch corrects module alias to "sha224".
Reported-by: Pierre-Mayeul Badaire <pierre-mayeul.badaire@m4x.org>
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | arch/x86/crypto/sha256_ssse3_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/sha256_ssse3_glue.c b/arch/x86/crypto/sha256_ssse3_glue.c index e52947f80e68..f248546da1ca 100644 --- a/arch/x86/crypto/sha256_ssse3_glue.c +++ b/arch/x86/crypto/sha256_ssse3_glue.c @@ -319,4 +319,4 @@ MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm, Supplemental SSE3 accelerated"); MODULE_ALIAS("sha256"); -MODULE_ALIAS("sha384"); +MODULE_ALIAS("sha224"); |