You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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:
@@ -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;
|
||||
|
||||
@@ -612,7 +612,7 @@ des_err:
|
||||
goto out;
|
||||
}
|
||||
|
||||
static void __exit fini(void)
|
||||
static void __exit des_s390_fini(void)
|
||||
{
|
||||
crypto_unregister_alg(&cbc_des3_192_alg);
|
||||
crypto_unregister_alg(&ecb_des3_192_alg);
|
||||
@@ -625,8 +625,8 @@ static void __exit fini(void)
|
||||
crypto_unregister_alg(&des_alg);
|
||||
}
|
||||
|
||||
module_init(init);
|
||||
module_exit(fini);
|
||||
module_init(des_s390_init);
|
||||
module_exit(des_s390_fini);
|
||||
|
||||
MODULE_ALIAS("des");
|
||||
MODULE_ALIAS("des3_ede");
|
||||
|
||||
Reference in New Issue
Block a user