diff options
Diffstat (limited to 'drivers/scsi/ips.c')
-rw-r--r-- | drivers/scsi/ips.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index 6572e100f7b2..6dfcb4fbccdd 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -873,7 +873,7 @@ ips_eh_abort(Scsi_Cmnd * SC) | |||
873 | /* */ | 873 | /* */ |
874 | /****************************************************************************/ | 874 | /****************************************************************************/ |
875 | static int | 875 | static int |
876 | ips_eh_reset(Scsi_Cmnd * SC) | 876 | __ips_eh_reset(Scsi_Cmnd * SC) |
877 | { | 877 | { |
878 | int ret; | 878 | int ret; |
879 | int i; | 879 | int i; |
@@ -1060,6 +1060,18 @@ ips_eh_reset(Scsi_Cmnd * SC) | |||
1060 | 1060 | ||
1061 | } | 1061 | } |
1062 | 1062 | ||
1063 | static int | ||
1064 | ips_eh_reset(Scsi_Cmnd * SC) | ||
1065 | { | ||
1066 | int rc; | ||
1067 | |||
1068 | spin_lock_irq(SC->device->host->host_lock); | ||
1069 | rc = __ips_eh_reset(SC); | ||
1070 | spin_unlock_irq(SC->device->host->host_lock); | ||
1071 | |||
1072 | return rc; | ||
1073 | } | ||
1074 | |||
1063 | /****************************************************************************/ | 1075 | /****************************************************************************/ |
1064 | /* */ | 1076 | /* */ |
1065 | /* Routine Name: ips_queue */ | 1077 | /* Routine Name: ips_queue */ |