Commit 74fa80ee authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Martin K. Petersen

scsi: acornscsi: move bus reset to host reset

The bus reset function is really a host reset, so move it to
eh_host_reset_handler.
Signed-off-by: default avatarHannes Reinecke <hare@suse.com>
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 af167bc4
...@@ -2725,23 +2725,24 @@ int acornscsi_abort(struct scsi_cmnd *SCpnt) ...@@ -2725,23 +2725,24 @@ int acornscsi_abort(struct scsi_cmnd *SCpnt)
* Params : SCpnt - command causing reset * Params : SCpnt - command causing reset
* Returns : one of SCSI_RESET_ macros * Returns : one of SCSI_RESET_ macros
*/ */
int acornscsi_bus_reset(struct scsi_cmnd *SCpnt) int acornscsi_host_reset(struct Scsi_Host *shpnt)
{ {
AS_Host *host = (AS_Host *)SCpnt->device->host->hostdata; AS_Host *host = (AS_Host *)shpnt->hostdata;
struct scsi_cmnd *SCptr; struct scsi_cmnd *SCptr;
host->stats.resets += 1; host->stats.resets += 1;
#if (DEBUG & DEBUG_RESET) #if (DEBUG & DEBUG_RESET)
{ {
int asr, ssr; int asr, ssr, devidx;
asr = sbic_arm_read(host, SBIC_ASR); asr = sbic_arm_read(host, SBIC_ASR);
ssr = sbic_arm_read(host, SBIC_SSR); ssr = sbic_arm_read(host, SBIC_SSR);
printk(KERN_WARNING "acornscsi_reset: "); printk(KERN_WARNING "acornscsi_reset: ");
print_sbic_status(asr, ssr, host->scsi.phase); print_sbic_status(asr, ssr, host->scsi.phase);
acornscsi_dumplog(host, SCpnt->device->id); for (devidx = 0; devidx < 9; devidx ++) {
acornscsi_dumplog(host, devidx);
} }
#endif #endif
...@@ -2884,7 +2885,7 @@ static struct scsi_host_template acornscsi_template = { ...@@ -2884,7 +2885,7 @@ static struct scsi_host_template acornscsi_template = {
.info = acornscsi_info, .info = acornscsi_info,
.queuecommand = acornscsi_queuecmd, .queuecommand = acornscsi_queuecmd,
.eh_abort_handler = acornscsi_abort, .eh_abort_handler = acornscsi_abort,
.eh_bus_reset_handler = acornscsi_bus_reset, .eh_host_reset_handler = acornscsi_host_reset,
.can_queue = 16, .can_queue = 16,
.this_id = 7, .this_id = 7,
.sg_tablesize = SG_ALL, .sg_tablesize = SG_ALL,
......
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