|
@@ -1304,7 +1304,6 @@ int mptscsih_show_info(struct seq_file *m, struct Scsi_Host *host)
|
|
|
/**
|
|
|
* mptscsih_qcmd - Primary Fusion MPT SCSI initiator IO start routine.
|
|
|
* @SCpnt: Pointer to scsi_cmnd structure
|
|
|
- * @done: Pointer SCSI mid-layer IO completion function
|
|
|
*
|
|
|
* (linux scsi_host_template.queuecommand routine)
|
|
|
* This is the primary SCSI IO start routine. Create a MPI SCSIIORequest
|
|
@@ -1313,7 +1312,7 @@ int mptscsih_show_info(struct seq_file *m, struct Scsi_Host *host)
|
|
|
* Returns 0. (rtn value discarded by linux scsi mid-layer)
|
|
|
*/
|
|
|
int
|
|
|
-mptscsih_qcmd(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
|
|
|
+mptscsih_qcmd(struct scsi_cmnd *SCpnt)
|
|
|
{
|
|
|
MPT_SCSI_HOST *hd;
|
|
|
MPT_FRAME_HDR *mf;
|
|
@@ -1329,10 +1328,9 @@ mptscsih_qcmd(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
|
|
|
|
|
|
hd = shost_priv(SCpnt->device->host);
|
|
|
ioc = hd->ioc;
|
|
|
- SCpnt->scsi_done = done;
|
|
|
|
|
|
- dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "qcmd: SCpnt=%p, done()=%p\n",
|
|
|
- ioc->name, SCpnt, done));
|
|
|
+ dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "qcmd: SCpnt=%p\n",
|
|
|
+ ioc->name, SCpnt));
|
|
|
|
|
|
if (ioc->taskmgmt_quiesce_io)
|
|
|
return SCSI_MLQUEUE_HOST_BUSY;
|