Skip to content

Commit

Permalink
[S390] zcrypt: make init/exit functions static.
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Oct 12, 2007
1 parent 3f4cf6e commit 731475c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/s390/crypto/zcrypt_mono.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
/**
* The module initialization code.
*/
int __init zcrypt_init(void)
static int __init zcrypt_init(void)
{
int rc;

Expand Down Expand Up @@ -86,7 +86,7 @@ int __init zcrypt_init(void)
/**
* The module termination code.
*/
void __exit zcrypt_exit(void)
static void __exit zcrypt_exit(void)
{
zcrypt_cex2a_exit();
zcrypt_pcixcc_exit();
Expand Down

0 comments on commit 731475c

Please sign in to comment.