aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2007-10-12 16:11:27 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2007-10-12 16:13:03 +0200
commit731475c92ed587ac0e112c49b47b12de8d0ab609 (patch)
tree66fe044214102e628b7814b79064b9506398407a
parent3f4cf6e72f9f6a0b046b32881acc4f829f3aaa46 (diff)
downloadkernel_samsung_smdk4412-731475c92ed587ac0e112c49b47b12de8d0ab609.zip
kernel_samsung_smdk4412-731475c92ed587ac0e112c49b47b12de8d0ab609.tar.gz
kernel_samsung_smdk4412-731475c92ed587ac0e112c49b47b12de8d0ab609.tar.bz2
[S390] zcrypt: make init/exit functions static.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r--drivers/s390/crypto/zcrypt_mono.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/crypto/zcrypt_mono.c b/drivers/s390/crypto/zcrypt_mono.c
index 2a9349a..44253fd 100644
--- a/drivers/s390/crypto/zcrypt_mono.c
+++ b/drivers/s390/crypto/zcrypt_mono.c
@@ -45,7 +45,7 @@
/**
* The module initialization code.
*/
-int __init zcrypt_init(void)
+static int __init zcrypt_init(void)
{
int rc;
@@ -86,7 +86,7 @@ out:
/**
* The module termination code.
*/
-void __exit zcrypt_exit(void)
+static void __exit zcrypt_exit(void)
{
zcrypt_cex2a_exit();
zcrypt_pcixcc_exit();