X-Git-Url: http://ftp.safe.ca/?a=blobdiff_plain;f=crypto%2Fchainiv.c;h=cf68d43653476f7a0ab119903ea8a9cc46319aed;hb=17f0f4a47df9aea9ee26c939f8057c35e0be1847;hp=9affadee32879c5114afab56d4bc82428c01dcf6;hpb=872ac8743cb400192a9fce4ba2d3ffd7bb309685;p=safe%2Fjmp%2Flinux-2.6 diff --git a/crypto/chainiv.c b/crypto/chainiv.c index 9affade..cf68d43 100644 --- a/crypto/chainiv.c +++ b/crypto/chainiv.c @@ -320,12 +320,18 @@ static struct crypto_template chainiv_tmpl = { .module = THIS_MODULE, }; -int __init chainiv_module_init(void) +static int __init chainiv_module_init(void) { return crypto_register_template(&chainiv_tmpl); } -void chainiv_module_exit(void) +static void chainiv_module_exit(void) { crypto_unregister_template(&chainiv_tmpl); } + +module_init(chainiv_module_init); +module_exit(chainiv_module_exit); + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Chain IV Generator");