diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2015-04-23 13:03:23 +0200 |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-05-25 17:46:29 +0200 |
commit | 6a6981fea3b8a6e6ab6a533991e474270602b9e1 (patch) | |
tree | 427d05def390f0f289517e262a13f6a600f3ef24 | |
parent | megaraid_sas : Support for Avago's Single server High Availability product (diff) | |
download | linux-6a6981fea3b8a6e6ab6a533991e474270602b9e1.tar.xz linux-6a6981fea3b8a6e6ab6a533991e474270602b9e1.zip |
megaraid_sas : megasas_complete_outstanding_ioctls() can be static
drivers/scsi/megaraid/megaraid_sas_base.c:1701:6: sparse: symbol 'megasas_complete_outstanding_ioctls' was not declared. Should it be static?
From: Christoph Hellwig <hch@lst.de>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sumit Saxena <sumit.saxena@avagotech.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Tomas Henzl <thenzl@redhat.com>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c index 3d311cad8daf..67ca6d31f3f5 100644 --- a/drivers/scsi/megaraid/megaraid_sas_base.c +++ b/drivers/scsi/megaraid/megaraid_sas_base.c @@ -1685,7 +1685,7 @@ static int megasas_slave_alloc(struct scsi_device *sdev) * @instance: Adapter soft state * */ -void megasas_complete_outstanding_ioctls(struct megasas_instance *instance) +static void megasas_complete_outstanding_ioctls(struct megasas_instance *instance) { int i; struct megasas_cmd *cmd_mfi; |