diff options
Diffstat (limited to 'drivers/message/fusion/mptscsih.c')
| -rw-r--r-- | drivers/message/fusion/mptscsih.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/message/fusion/mptscsih.c b/drivers/message/fusion/mptscsih.c index 6796597dcee..929d584855d 100644 --- a/drivers/message/fusion/mptscsih.c +++ b/drivers/message/fusion/mptscsih.c @@ -1711,7 +1711,7 @@ mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id, int lun,  	if (issue_hard_reset) {  		printk(MYIOC_s_WARN_FMT "Issuing Reset from %s!!\n",  			ioc->name, __func__); -		retval = mpt_HardResetHandler(ioc, CAN_SLEEP); +		retval = mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);  		mpt_free_msg_frame(ioc, mf);  	} @@ -1991,7 +1991,7 @@ mptscsih_host_reset(struct scsi_cmnd *SCpnt)  	/*  If our attempts to reset the host failed, then return a failed  	 *  status.  The host will be taken off line by the SCSI mid-layer.  	 */ -    retval = mpt_HardResetHandler(ioc, CAN_SLEEP); +    retval = mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);  	if (retval < 0)  		status = FAILED;  	else @@ -3040,7 +3040,7 @@ mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *io)  		if (!timeleft) {  			printk(MYIOC_s_WARN_FMT "Issuing Reset from %s!!\n",  			    ioc->name, __func__); -			mpt_HardResetHandler(ioc, CAN_SLEEP); +			mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);  			mpt_free_msg_frame(ioc, mf);  		}  		goto out;  |