Skip to content

Commit

Permalink
scsi: rtsx: drop bus reset function
Browse files Browse the repository at this point in the history
Function is a stub, so can as well be dropped.

Signed-off-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
  • Loading branch information
Hannes Reinecke authored and Martin K. Petersen committed Aug 25, 2017
1 parent ec05e23 commit 13beb92
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions drivers/staging/rts5208/rtsx.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,16 +205,6 @@ static int device_reset(struct scsi_cmnd *srb)
return SUCCESS;
}

/* Simulate a SCSI bus reset by resetting the device's USB port. */
static int bus_reset(struct scsi_cmnd *srb)
{
struct rtsx_dev *dev = host_to_rtsx(srb->device->host);

dev_info(&dev->pci->dev, "%s called\n", __func__);

return SUCCESS;
}

/*
* this defines our host template, with which we'll allocate hosts
*/
Expand All @@ -231,7 +221,6 @@ static struct scsi_host_template rtsx_host_template = {
/* error and abort handlers */
.eh_abort_handler = command_abort,
.eh_device_reset_handler = device_reset,
.eh_bus_reset_handler = bus_reset,

/* queue commands only, only one command per LUN */
.can_queue = 1,
Expand Down

0 comments on commit 13beb92

Please sign in to comment.