aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Borntraeger <borntraeger@de.ibm.com>2007-07-10 11:24:22 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2007-07-10 11:24:54 +0200
commitf60d89108f3481ca11672b82cf7e67171e050ce4 (patch)
treebb5b44b2159041490754d9ac43554ec4002f6ee0
parent[S390] s390: rename CPU_IDLE to S390_CPU_IDLE (diff)
downloadlinux-dev-f60d89108f3481ca11672b82cf7e67171e050ce4.tar.xz
linux-dev-f60d89108f3481ca11672b82cf7e67171e050ce4.zip
[S390] vmlogrdr function annotation.
Use __init and __exit for vmlogrdr. Both functions are only referenced by the module_init exit macros, so this change should be fine. Acked-by: Stefan Weinhuber <wein@de.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r--drivers/s390/char/vmlogrdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/char/vmlogrdr.c b/drivers/s390/char/vmlogrdr.c
index a5a00e9ae4d0..12f7a4ce82c1 100644
--- a/drivers/s390/char/vmlogrdr.c
+++ b/drivers/s390/char/vmlogrdr.c
@@ -835,7 +835,7 @@ static void vmlogrdr_cleanup(void)
}
-static int vmlogrdr_init(void)
+static int __init vmlogrdr_init(void)
{
int rc;
int i;
@@ -885,7 +885,7 @@ cleanup:
}
-static void vmlogrdr_exit(void)
+static void __exit vmlogrdr_exit(void)
{
vmlogrdr_cleanup();
printk (KERN_INFO "vmlogrdr: driver unloaded\n");