[S390] crypto: use more descriptive function names for init/exit routines.

Not very helpful when code dies in "init".
See also http://lkml.org/lkml/2008/3/26/557 .

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
Heiko Carstens 2008-04-17 07:46:17 +02:00
parent c0015f91d8
commit 9f7819c1e5
4 changed files with 16 additions and 16 deletions

View File

@ -499,7 +499,7 @@ static struct crypto_alg cbc_aes_alg = {
} }
}; };
static int __init aes_init(void) static int __init aes_s390_init(void)
{ {
int ret; int ret;
@ -542,15 +542,15 @@ aes_err:
goto out; goto out;
} }
static void __exit aes_fini(void) static void __exit aes_s390_fini(void)
{ {
crypto_unregister_alg(&cbc_aes_alg); crypto_unregister_alg(&cbc_aes_alg);
crypto_unregister_alg(&ecb_aes_alg); crypto_unregister_alg(&ecb_aes_alg);
crypto_unregister_alg(&aes_alg); crypto_unregister_alg(&aes_alg);
} }
module_init(aes_init); module_init(aes_s390_init);
module_exit(aes_fini); module_exit(aes_s390_fini);
MODULE_ALIAS("aes"); MODULE_ALIAS("aes");

View File

@ -550,7 +550,7 @@ static struct crypto_alg cbc_des3_192_alg = {
} }
}; };
static int init(void) static int des_s390_init(void)
{ {
int ret = 0; int ret = 0;
@ -612,7 +612,7 @@ des_err:
goto out; goto out;
} }
static void __exit fini(void) static void __exit des_s390_fini(void)
{ {
crypto_unregister_alg(&cbc_des3_192_alg); crypto_unregister_alg(&cbc_des3_192_alg);
crypto_unregister_alg(&ecb_des3_192_alg); crypto_unregister_alg(&ecb_des3_192_alg);
@ -625,8 +625,8 @@ static void __exit fini(void)
crypto_unregister_alg(&des_alg); crypto_unregister_alg(&des_alg);
} }
module_init(init); module_init(des_s390_init);
module_exit(fini); module_exit(des_s390_fini);
MODULE_ALIAS("des"); MODULE_ALIAS("des");
MODULE_ALIAS("des3_ede"); MODULE_ALIAS("des3_ede");

View File

@ -137,7 +137,7 @@ static struct crypto_alg alg = {
.dia_final = sha1_final } } .dia_final = sha1_final } }
}; };
static int __init init(void) static int __init sha1_s390_init(void)
{ {
if (!crypt_s390_func_available(KIMD_SHA_1)) if (!crypt_s390_func_available(KIMD_SHA_1))
return -EOPNOTSUPP; return -EOPNOTSUPP;
@ -145,13 +145,13 @@ static int __init init(void)
return crypto_register_alg(&alg); return crypto_register_alg(&alg);
} }
static void __exit fini(void) static void __exit sha1_s390_fini(void)
{ {
crypto_unregister_alg(&alg); crypto_unregister_alg(&alg);
} }
module_init(init); module_init(sha1_s390_init);
module_exit(fini); module_exit(sha1_s390_fini);
MODULE_ALIAS("sha1"); MODULE_ALIAS("sha1");

View File

@ -133,7 +133,7 @@ static struct crypto_alg alg = {
.dia_final = sha256_final } } .dia_final = sha256_final } }
}; };
static int init(void) static int sha256_s390_init(void)
{ {
if (!crypt_s390_func_available(KIMD_SHA_256)) if (!crypt_s390_func_available(KIMD_SHA_256))
return -EOPNOTSUPP; return -EOPNOTSUPP;
@ -141,13 +141,13 @@ static int init(void)
return crypto_register_alg(&alg); return crypto_register_alg(&alg);
} }
static void __exit fini(void) static void __exit sha256_s390_fini(void)
{ {
crypto_unregister_alg(&alg); crypto_unregister_alg(&alg);
} }
module_init(init); module_init(sha256_s390_init);
module_exit(fini); module_exit(sha256_s390_fini);
MODULE_ALIAS("sha256"); MODULE_ALIAS("sha256");