Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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 @@ release_transport:
	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");