diff options
author | Matthew Wilcox <matthew@wil.cx> | 2007-09-25 12:42:01 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:52:04 -0400 |
commit | cce99c6925b8d6a59cf584411277c1c20c330334 (patch) | |
tree | 513504b6a22be6cc9b7d6689cccb2a48ee6dd4cd /drivers/scsi/NCR53C9x.c | |
parent | 1d0c7c8dcf289557f13b6b0f6d71b6a03b12b747 (diff) | |
download | op-kernel-dev-cce99c6925b8d6a59cf584411277c1c20c330334.zip op-kernel-dev-cce99c6925b8d6a59cf584411277c1c20c330334.tar.gz |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/NCR53C9x.c b/drivers/scsi/NCR53C9x.c index 79b4df15..96e8e29 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; |