Skip to content

Commit

Permalink
[SCSI] hpsa: remove superfluous returns from void functions.
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
  • Loading branch information
Stephen M. Cameron authored and James Bottomley committed Feb 17, 2010
1 parent 4967bd3 commit bcc4425
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/scsi/hpsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -898,15 +898,14 @@ static int hpsa_slave_alloc(struct scsi_device *sdev)

static void hpsa_slave_destroy(struct scsi_device *sdev)
{
return; /* nothing to do. */
/* nothing to do. */
}

static void hpsa_scsi_setup(struct ctlr_info *h)
{
h->ndevices = 0;
h->scsi_host = NULL;
spin_lock_init(&h->devlock);
return;
}

static void complete_scsi_command(struct CommandList *cp,
Expand Down Expand Up @@ -1775,7 +1774,6 @@ static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
kfree(inq_buff);
kfree(physdev_list);
kfree(logdev_list);
return;
}

/* hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Expand Down Expand Up @@ -3106,7 +3104,6 @@ static void __devinit hpsa_interrupt_mode(struct ctlr_info *h,
#endif /* CONFIG_PCI_MSI */
/* if we get here we're going to use the default interrupt mode */
h->intr[SIMPLE_MODE_INT] = pdev->irq;
return;
}

static int hpsa_pci_init(struct ctlr_info *h, struct pci_dev *pdev)
Expand Down

0 comments on commit bcc4425

Please sign in to comment.