Commit 12e5fc66 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Martin K. Petersen

scsi: NCR5380: Move bus reset to host reset

The bus reset handler really is a host reset, so move it to
eh_bus_reset_handler.
Signed-off-by: default avatarHannes Reinecke <hare@suse.com>
Acked-by: default avatarFinn Thain <fthain@telegraphics.com.au>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 74fa80ee
...@@ -2296,13 +2296,13 @@ static int NCR5380_abort(struct scsi_cmnd *cmd) ...@@ -2296,13 +2296,13 @@ static int NCR5380_abort(struct scsi_cmnd *cmd)
/** /**
* NCR5380_bus_reset - reset the SCSI bus * NCR5380_host_reset - reset the SCSI host
* @cmd: SCSI command undergoing EH * @cmd: SCSI command undergoing EH
* *
* Returns SUCCESS * Returns SUCCESS
*/ */
static int NCR5380_bus_reset(struct scsi_cmnd *cmd) static int NCR5380_host_reset(struct scsi_cmnd *cmd)
{ {
struct Scsi_Host *instance = cmd->device->host; struct Scsi_Host *instance = cmd->device->host;
struct NCR5380_hostdata *hostdata = shost_priv(instance); struct NCR5380_hostdata *hostdata = shost_priv(instance);
......
...@@ -216,7 +216,7 @@ static struct scsi_host_template cumanascsi_template = { ...@@ -216,7 +216,7 @@ static struct scsi_host_template cumanascsi_template = {
.info = cumanascsi_info, .info = cumanascsi_info,
.queuecommand = cumanascsi_queue_command, .queuecommand = cumanascsi_queue_command,
.eh_abort_handler = NCR5380_abort, .eh_abort_handler = NCR5380_abort,
.eh_bus_reset_handler = NCR5380_bus_reset, .eh_host_reset_handler = NCR5380_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_ALL, .sg_tablesize = SG_ALL,
......
...@@ -105,7 +105,7 @@ static struct scsi_host_template oakscsi_template = { ...@@ -105,7 +105,7 @@ static struct scsi_host_template oakscsi_template = {
.info = oakscsi_info, .info = oakscsi_info,
.queuecommand = oakscsi_queue_command, .queuecommand = oakscsi_queue_command,
.eh_abort_handler = NCR5380_abort, .eh_abort_handler = NCR5380_abort,
.eh_bus_reset_handler = NCR5380_bus_reset, .eh_host_reset_handler = NCR5380_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_ALL, .sg_tablesize = SG_ALL,
......
...@@ -671,7 +671,7 @@ static void atari_scsi_falcon_reg_write(unsigned int reg, u8 value) ...@@ -671,7 +671,7 @@ static void atari_scsi_falcon_reg_write(unsigned int reg, u8 value)
#include "NCR5380.c" #include "NCR5380.c"
static int atari_scsi_bus_reset(struct scsi_cmnd *cmd) static int atari_scsi_host_reset(struct scsi_cmnd *cmd)
{ {
int rv; int rv;
unsigned long flags; unsigned long flags;
...@@ -688,7 +688,7 @@ static int atari_scsi_bus_reset(struct scsi_cmnd *cmd) ...@@ -688,7 +688,7 @@ static int atari_scsi_bus_reset(struct scsi_cmnd *cmd)
atari_dma_orig_addr = NULL; atari_dma_orig_addr = NULL;
} }
rv = NCR5380_bus_reset(cmd); rv = NCR5380_host_reset(cmd);
/* The 5380 raises its IRQ line while _RST is active but the ST DMA /* The 5380 raises its IRQ line while _RST is active but the ST DMA
* "lock" has been released so this interrupt may end up handled by * "lock" has been released so this interrupt may end up handled by
...@@ -711,7 +711,7 @@ static struct scsi_host_template atari_scsi_template = { ...@@ -711,7 +711,7 @@ static struct scsi_host_template atari_scsi_template = {
.info = atari_scsi_info, .info = atari_scsi_info,
.queuecommand = atari_scsi_queue_command, .queuecommand = atari_scsi_queue_command,
.eh_abort_handler = atari_scsi_abort, .eh_abort_handler = atari_scsi_abort,
.eh_bus_reset_handler = atari_scsi_bus_reset, .eh_host_reset_handler = atari_scsi_host_reset,
.this_id = 7, .this_id = 7,
.cmd_per_lun = 2, .cmd_per_lun = 2,
.use_clustering = DISABLE_CLUSTERING, .use_clustering = DISABLE_CLUSTERING,
......
...@@ -58,7 +58,7 @@ static struct scsi_host_template dmx3191d_driver_template = { ...@@ -58,7 +58,7 @@ static struct scsi_host_template dmx3191d_driver_template = {
.info = NCR5380_info, .info = NCR5380_info,
.queuecommand = NCR5380_queue_command, .queuecommand = NCR5380_queue_command,
.eh_abort_handler = NCR5380_abort, .eh_abort_handler = NCR5380_abort,
.eh_bus_reset_handler = NCR5380_bus_reset, .eh_host_reset_handler = NCR5380_host_reset,
.can_queue = 32, .can_queue = 32,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_ALL, .sg_tablesize = SG_ALL,
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
#define NCR5380_intr generic_NCR5380_intr #define NCR5380_intr generic_NCR5380_intr
#define NCR5380_queue_command generic_NCR5380_queue_command #define NCR5380_queue_command generic_NCR5380_queue_command
#define NCR5380_abort generic_NCR5380_abort #define NCR5380_abort generic_NCR5380_abort
#define NCR5380_bus_reset generic_NCR5380_bus_reset #define NCR5380_host_reset generic_NCR5380_host_reset
#define NCR5380_info generic_NCR5380_info #define NCR5380_info generic_NCR5380_info
#define NCR5380_io_delay(x) udelay(x) #define NCR5380_io_delay(x) udelay(x)
...@@ -695,7 +695,7 @@ static struct scsi_host_template driver_template = { ...@@ -695,7 +695,7 @@ static struct scsi_host_template driver_template = {
.info = generic_NCR5380_info, .info = generic_NCR5380_info,
.queuecommand = generic_NCR5380_queue_command, .queuecommand = generic_NCR5380_queue_command,
.eh_abort_handler = generic_NCR5380_abort, .eh_abort_handler = generic_NCR5380_abort,
.eh_bus_reset_handler = generic_NCR5380_bus_reset, .eh_host_reset_handler = generic_NCR5380_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_ALL, .sg_tablesize = SG_ALL,
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
#define NCR5380_intr macscsi_intr #define NCR5380_intr macscsi_intr
#define NCR5380_queue_command macscsi_queue_command #define NCR5380_queue_command macscsi_queue_command
#define NCR5380_abort macscsi_abort #define NCR5380_abort macscsi_abort
#define NCR5380_bus_reset macscsi_bus_reset #define NCR5380_host_reset macscsi_host_reset
#define NCR5380_info macscsi_info #define NCR5380_info macscsi_info
#include "NCR5380.h" #include "NCR5380.h"
...@@ -328,7 +328,7 @@ static struct scsi_host_template mac_scsi_template = { ...@@ -328,7 +328,7 @@ static struct scsi_host_template mac_scsi_template = {
.info = macscsi_info, .info = macscsi_info,
.queuecommand = macscsi_queue_command, .queuecommand = macscsi_queue_command,
.eh_abort_handler = macscsi_abort, .eh_abort_handler = macscsi_abort,
.eh_bus_reset_handler = macscsi_bus_reset, .eh_host_reset_handler = macscsi_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = 1, .sg_tablesize = 1,
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
#define NCR5380_write(reg, value) out_8(hostdata->io + (reg), value) #define NCR5380_write(reg, value) out_8(hostdata->io + (reg), value)
#define NCR5380_queue_command sun3scsi_queue_command #define NCR5380_queue_command sun3scsi_queue_command
#define NCR5380_bus_reset sun3scsi_bus_reset #define NCR5380_host_reset sun3scsi_host_reset
#define NCR5380_abort sun3scsi_abort #define NCR5380_abort sun3scsi_abort
#define NCR5380_info sun3scsi_info #define NCR5380_info sun3scsi_info
...@@ -495,7 +495,7 @@ static struct scsi_host_template sun3_scsi_template = { ...@@ -495,7 +495,7 @@ static struct scsi_host_template sun3_scsi_template = {
.info = sun3scsi_info, .info = sun3scsi_info,
.queuecommand = sun3scsi_queue_command, .queuecommand = sun3scsi_queue_command,
.eh_abort_handler = sun3scsi_abort, .eh_abort_handler = sun3scsi_abort,
.eh_bus_reset_handler = sun3scsi_bus_reset, .eh_host_reset_handler = sun3scsi_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_NONE, .sg_tablesize = SG_NONE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment