aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/NCR53C9x.c
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2007-09-25 12:42:01 -0400
committerJames Bottomley <jejb@mulgrave.localdomain>2007-10-12 14:52:04 -0400
commitcce99c6925b8d6a59cf584411277c1c20c330334 (patch)
tree513504b6a22be6cc9b7d6689cccb2a48ee6dd4cd /drivers/scsi/NCR53C9x.c
parent[SCSI] pluto: Don't abuse ->done for internal commands (diff)
downloadlinux-dev-cce99c6925b8d6a59cf584411277c1c20c330334.tar.xz
linux-dev-cce99c6925b8d6a59cf584411277c1c20c330334.zip
[SCSI] Fix mistaken uses of ->done
All these drivers meant to call ->scsi_done() but got confused. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/NCR53C9x.c')
-rw-r--r--drivers/scsi/NCR53C9x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/NCR53C9x.c b/drivers/scsi/NCR53C9x.c
index 79b4df158140..96e8e29aa05d 100644
--- a/drivers/scsi/NCR53C9x.c
+++ b/drivers/scsi/NCR53C9x.c
@@ -1385,7 +1385,7 @@ int esp_abort(Scsi_Cmnd *SCptr)
this->host_scribble = NULL;
esp_release_dmabufs(esp, this);
this->result = DID_ABORT << 16;
- this->done(this);
+ this->scsi_done(this);
if(don)
esp->dma_ints_on(esp);
return SUCCESS;