diff options
Diffstat (limited to 'crypto/cast5_generic.c')
-rw-r--r-- | crypto/cast5_generic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cast5_generic.c b/crypto/cast5_generic.c index 085a1eedae03..f68330793e0c 100644 --- a/crypto/cast5_generic.c +++ b/crypto/cast5_generic.c @@ -13,7 +13,7 @@ */ -#include <asm/unaligned.h> +#include <linux/unaligned.h> #include <crypto/algapi.h> #include <linux/init.h> #include <linux/module.h> @@ -531,7 +531,7 @@ static void __exit cast5_mod_fini(void) crypto_unregister_alg(&alg); } -subsys_initcall(cast5_mod_init); +module_init(cast5_mod_init); module_exit(cast5_mod_fini); MODULE_LICENSE("GPL"); |