]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[SCSI] zfcp: Add __init declaration to zfcp_cache_hw_align
authorChristof Schmitt <christof.schmitt@de.ibm.com>
Thu, 2 Dec 2010 14:16:18 +0000 (15:16 +0100)
committerJames Bottomley <James.Bottomley@suse.de>
Tue, 21 Dec 2010 18:24:47 +0000 (12:24 -0600)
The function zfcp_cache_hw_align is only called from zfcp_module_init,
so it should be declared with __init as well.

Reviewed-by: Steffen Maier <maier@linux.vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/s390/scsi/zfcp_aux.c

index 352ca0d4ca25083428dd272f128d15731f48afa6..51c666fb67a4c479b99f8a7d9d3e7e635d2107fe 100644 (file)
@@ -45,8 +45,8 @@ static char *init_device;
 module_param_named(device, init_device, charp, 0400);
 MODULE_PARM_DESC(device, "specify initial device");
 
-static struct kmem_cache *zfcp_cache_hw_align(const char *name,
-                                             unsigned long size)
+static struct kmem_cache * __init zfcp_cache_hw_align(const char *name,
+                                                     unsigned long size)
 {
        return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);
 }