aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/hpsa.c
diff options
context:
space:
mode:
authorStephen M. Cameron <scameron@beardog.cce.hp.com>2010-02-04 09:41:49 -0500
committerJames Bottomley <James.Bottomley@suse.de>2010-02-17 14:17:50 -0500
commit4967bd3e5caa87da43c251ae32504230259b18c6 (patch)
treec4f5928fa25cb256fc999131f0cb7692c9227063 /drivers/scsi/hpsa.c
parentb2ed4f79194e06766327ae581b063f8747d94ea9 (diff)
[SCSI] hpsa: make adjust_hpsa_scsi_table return void.
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/hpsa.c')
-rw-r--r--drivers/scsi/hpsa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 2c256e31b107..6fe5142adc5e 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -733,7 +733,7 @@ static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
733 return DEVICE_NOT_FOUND; 733 return DEVICE_NOT_FOUND;
734} 734}
735 735
736static int adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno, 736static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
737 struct hpsa_scsi_dev_t *sd[], int nsds) 737 struct hpsa_scsi_dev_t *sd[], int nsds)
738{ 738{
739 /* sd contains scsi3 addresses and devtypes, and inquiry 739 /* sd contains scsi3 addresses and devtypes, and inquiry
@@ -859,7 +859,6 @@ static int adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
859free_and_out: 859free_and_out:
860 kfree(added); 860 kfree(added);
861 kfree(removed); 861 kfree(removed);
862 return 0;
863} 862}
864 863
865/* 864/*