Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3af5b90b authored by Kamalesh Babulal's avatar Kamalesh Babulal Committed by Herbert Xu
Browse files

[CRYPTO] all: Clean up init()/fini()



On Thu, Mar 27, 2008 at 03:40:36PM +0100, Bodo Eggert wrote:
> Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> wrote:
> 
> > This patch cleanups the crypto code, replaces the init() and fini()
> > with the <algorithm name>_init/_fini
> 
> This part ist OK.
> 
> > or init/fini_<algorithm name> (if the 
> > <algorithm name>_init/_fini exist)
> 
> Having init_foo and foo_init won't be a good thing, will it? I'd start
> confusing them.
> 
> What about foo_modinit instead?

Thanks for the suggestion, the init() is replaced with

	<algorithm name>_mod_init ()

and fini () is replaced with <algorithm name>_mod_fini.
 
Signed-off-by: default avatarKamalesh Babulal <kamalesh@linux.vnet.ibm.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 7dc748e4
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -687,7 +687,7 @@ static struct crypto_alg anubis_alg = {
	.cia_decrypt		=	anubis_decrypt } }
	.cia_decrypt		=	anubis_decrypt } }
};
};


static int __init init(void)
static int __init anubis_mod_init(void)
{
{
	int ret = 0;
	int ret = 0;
	
	
@@ -695,13 +695,13 @@ static int __init init(void)
	return ret;
	return ret;
}
}


static void __exit fini(void)
static void __exit anubis_mod_fini(void)
{
{
	crypto_unregister_alg(&anubis_alg);
	crypto_unregister_alg(&anubis_alg);
}
}


module_init(init);
module_init(anubis_mod_init);
module_exit(fini);
module_exit(anubis_mod_fini);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Anubis Cryptographic Algorithm");
MODULE_DESCRIPTION("Anubis Cryptographic Algorithm");
+4 −4
Original line number Original line Diff line number Diff line
@@ -465,18 +465,18 @@ static struct crypto_alg alg = {
	.cia_decrypt  		=	bf_decrypt } }
	.cia_decrypt  		=	bf_decrypt } }
};
};


static int __init init(void)
static int __init blowfish_mod_init(void)
{
{
	return crypto_register_alg(&alg);
	return crypto_register_alg(&alg);
}
}


static void __exit fini(void)
static void __exit blowfish_mod_fini(void)
{
{
	crypto_unregister_alg(&alg);
	crypto_unregister_alg(&alg);
}
}


module_init(init);
module_init(blowfish_mod_init);
module_exit(fini);
module_exit(blowfish_mod_fini);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
+4 −4
Original line number Original line Diff line number Diff line
@@ -817,18 +817,18 @@ static struct crypto_alg alg = {
	}
	}
};
};


static int __init init(void)
static int __init cast5_mod_init(void)
{
{
	return crypto_register_alg(&alg);
	return crypto_register_alg(&alg);
}
}


static void __exit fini(void)
static void __exit cast5_mod_fini(void)
{
{
	crypto_unregister_alg(&alg);
	crypto_unregister_alg(&alg);
}
}


module_init(init);
module_init(cast5_mod_init);
module_exit(fini);
module_exit(cast5_mod_fini);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Cast5 Cipher Algorithm");
MODULE_DESCRIPTION("Cast5 Cipher Algorithm");
+4 −4
Original line number Original line Diff line number Diff line
@@ -528,18 +528,18 @@ static struct crypto_alg alg = {
		  }
		  }
};
};


static int __init init(void)
static int __init cast6_mod_init(void)
{
{
	return crypto_register_alg(&alg);
	return crypto_register_alg(&alg);
}
}


static void __exit fini(void)
static void __exit cast6_mod_fini(void)
{
{
	crypto_unregister_alg(&alg);
	crypto_unregister_alg(&alg);
}
}


module_init(init);
module_init(cast6_mod_init);
module_exit(fini);
module_exit(cast6_mod_fini);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Cast6 Cipher Algorithm");
MODULE_DESCRIPTION("Cast6 Cipher Algorithm");
+4 −4
Original line number Original line Diff line number Diff line
@@ -98,18 +98,18 @@ static struct crypto_alg alg = {
	}
	}
};
};


static int __init init(void)
static int __init crc32c_mod_init(void)
{
{
	return crypto_register_alg(&alg);
	return crypto_register_alg(&alg);
}
}


static void __exit fini(void)
static void __exit crc32c_mod_fini(void)
{
{
	crypto_unregister_alg(&alg);
	crypto_unregister_alg(&alg);
}
}


module_init(init);
module_init(crc32c_mod_init);
module_exit(fini);
module_exit(crc32c_mod_fini);


MODULE_AUTHOR("Clay Haapala <chaapala@cisco.com>");
MODULE_AUTHOR("Clay Haapala <chaapala@cisco.com>");
MODULE_DESCRIPTION("CRC32c (Castagnoli) calculations wrapper for lib/crc32c");
MODULE_DESCRIPTION("CRC32c (Castagnoli) calculations wrapper for lib/crc32c");
Loading