diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2010-08-09 18:12:55 +0200 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-08-09 18:12:54 +0200 |
commit | 2e85ba510ede4aea1b150493407ae911e8ea5051 (patch) | |
tree | aa52348c5d61cfd953b19724376e8d774b19b1a4 /arch | |
parent | c304db8a860c10abfaf72f7faa3df598079e2f0c (diff) | |
download | linux-3.10-2e85ba510ede4aea1b150493407ae911e8ea5051.tar.gz linux-3.10-2e85ba510ede4aea1b150493407ae911e8ea5051.tar.bz2 linux-3.10-2e85ba510ede4aea1b150493407ae911e8ea5051.zip |
[S390] cmm: add missing __init/__exit annotations
Add missing __init and __exit annoations for module init and exit
functions. This will save us huge amounts of memory... sort of.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/mm/cmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/mm/cmm.c b/arch/s390/mm/cmm.c index eb6a2ef5f82..4bddf8d3a15 100644 --- a/arch/s390/mm/cmm.c +++ b/arch/s390/mm/cmm.c @@ -427,7 +427,7 @@ static struct notifier_block cmm_power_notifier = { .notifier_call = cmm_power_event, }; -static int cmm_init(void) +static int __init cmm_init(void) { int rc = -ENOMEM; @@ -467,7 +467,7 @@ out_sysctl: } module_init(cmm_init); -static void cmm_exit(void) +static void __exit cmm_exit(void) { unregister_sysctl_table(cmm_sysctl_header); #ifdef CONFIG_CMM_IUCV |