Commit b5833cbb authored by Peter Huewe's avatar Peter Huewe Committed by James Bottomley

[SCSI] ibmvstgt: add __init/__exit macros

Add the __init and __exit macros to the module_init / module_exit
functions from drivers/scsi/ibmvscsi/ibmvstgt.c
Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Acked-by: default avatarBrian King <brking@linux.vnet.ibm.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 0dcae66f
...@@ -956,7 +956,7 @@ static struct srp_function_template ibmvstgt_transport_functions = { ...@@ -956,7 +956,7 @@ static struct srp_function_template ibmvstgt_transport_functions = {
.it_nexus_response = ibmvstgt_it_nexus_response, .it_nexus_response = ibmvstgt_it_nexus_response,
}; };
static int ibmvstgt_init(void) static int __init ibmvstgt_init(void)
{ {
int err = -ENOMEM; int err = -ENOMEM;
...@@ -987,7 +987,7 @@ static int ibmvstgt_init(void) ...@@ -987,7 +987,7 @@ static int ibmvstgt_init(void)
return err; return err;
} }
static void ibmvstgt_exit(void) static void __exit ibmvstgt_exit(void)
{ {
printk("Unregister IBM virtual SCSI driver\n"); printk("Unregister IBM virtual SCSI driver\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment