Commit a44407bc authored by John Levon's avatar John Levon Committed by James Bottomley

[PATCH] aix7xxx_old typo

Untested, against 2.5.63

regards
john
parent a47dafd7
...@@ -10392,7 +10392,7 @@ aic7xxx_bus_device_reset(Scsi_Cmnd *cmd) ...@@ -10392,7 +10392,7 @@ aic7xxx_bus_device_reset(Scsi_Cmnd *cmd)
aic7xxx_done_cmds_complete(p); aic7xxx_done_cmds_complete(p);
/* If the command was already complete or just completed, then we didn't /* If the command was already complete or just completed, then we didn't
* do a reset, return FAILED */ * do a reset, return FAILED */
if(!scb->flags & SCB_ACTIVE) if(!(scb->flags & SCB_ACTIVE))
return FAILED; return FAILED;
pause_sequencer(p); pause_sequencer(p);
...@@ -10615,7 +10615,7 @@ aic7xxx_abort(Scsi_Cmnd *cmd) ...@@ -10615,7 +10615,7 @@ aic7xxx_abort(Scsi_Cmnd *cmd)
aic7xxx_done_cmds_complete(p); aic7xxx_done_cmds_complete(p);
/* If the command was already complete or just completed, then we didn't /* If the command was already complete or just completed, then we didn't
* do a reset, return FAILED */ * do a reset, return FAILED */
if(!scb->flags & SCB_ACTIVE) if(!(scb->flags & SCB_ACTIVE))
return FAILED; return FAILED;
pause_sequencer(p); pause_sequencer(p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment