diff options
Diffstat (limited to 'drivers/scsi/a2091.c')
-rw-r--r-- | drivers/scsi/a2091.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/scsi/a2091.c b/drivers/scsi/a2091.c index 9928a2fbce0c..f7a1751e892d 100644 --- a/drivers/scsi/a2091.c +++ b/drivers/scsi/a2091.c | |||
@@ -221,7 +221,14 @@ int __init a2091_detect(Scsi_Host_Template *tpnt) | |||
221 | static int a2091_bus_reset(Scsi_Cmnd *cmd) | 221 | static int a2091_bus_reset(Scsi_Cmnd *cmd) |
222 | { | 222 | { |
223 | /* FIXME perform bus-specific reset */ | 223 | /* FIXME perform bus-specific reset */ |
224 | |||
225 | /* FIXME 2: kill this function, and let midlayer fall back | ||
226 | to the same action, calling wd33c93_host_reset() */ | ||
227 | |||
228 | spin_lock_irq(cmd->device->host->host_lock); | ||
224 | wd33c93_host_reset(cmd); | 229 | wd33c93_host_reset(cmd); |
230 | spin_unlock_irq(cmd->device->host->host_lock); | ||
231 | |||
225 | return SUCCESS; | 232 | return SUCCESS; |
226 | } | 233 | } |
227 | 234 | ||