|
@@ -247,18 +247,14 @@ static struct crypto_template eseqiv_tmpl = {
|
|
|
.module = THIS_MODULE,
|
|
|
};
|
|
|
|
|
|
-static int __init eseqiv_module_init(void)
|
|
|
+int __init eseqiv_module_init(void)
|
|
|
{
|
|
|
return crypto_register_template(&eseqiv_tmpl);
|
|
|
}
|
|
|
+EXPORT_SYMBOL_GPL(eseqiv_module_init);
|
|
|
|
|
|
-static void __exit eseqiv_module_exit(void)
|
|
|
+void __exit eseqiv_module_exit(void)
|
|
|
{
|
|
|
crypto_unregister_template(&eseqiv_tmpl);
|
|
|
}
|
|
|
-
|
|
|
-module_init(eseqiv_module_init);
|
|
|
-module_exit(eseqiv_module_exit);
|
|
|
-
|
|
|
-MODULE_LICENSE("GPL");
|
|
|
-MODULE_DESCRIPTION("Encrypted Sequence Number IV Generator");
|
|
|
+EXPORT_SYMBOL_GPL(eseqiv_module_exit);
|