diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-01-20 07:17:34 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-01-20 07:17:34 +0100 |
commit | 2262889091c15ef0c790be0b99ea6dae73c86a0b (patch) | |
tree | cb3500bb32ffba36e9892c2dad98bda001ea65ca /arch/powerpc | |
parent | Merge tag 'gpio-v3.19-4' of git://git.kernel.org/pub/scm/linux/kernel/git/lin... (diff) | |
parent | crypto: add missing crypto module aliases (diff) | |
download | linux-2262889091c15ef0c790be0b99ea6dae73c86a0b.tar.xz linux-2262889091c15ef0c790be0b99ea6dae73c86a0b.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fix from Herbert Xu:
"This fixes a regression that arose from the change to add a crypto
prefix to module names which was done to prevent the loading of
arbitrary modules through the Crypto API.
In particular, a number of modules were missing the crypto prefix
which meant that they could no longer be autoloaded"
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: add missing crypto module aliases
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/crypto/sha1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/crypto/sha1.c b/arch/powerpc/crypto/sha1.c index d3feba5a275f..c154cebc1041 100644 --- a/arch/powerpc/crypto/sha1.c +++ b/arch/powerpc/crypto/sha1.c @@ -154,4 +154,5 @@ module_exit(sha1_powerpc_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("SHA1 Secure Hash Algorithm"); +MODULE_ALIAS_CRYPTO("sha1"); MODULE_ALIAS_CRYPTO("sha1-powerpc"); |