Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77078
b: refs/heads/master
c: 3be38e7
h: refs/heads/master
v: v3
  • Loading branch information
Roel Kluin authored and James Bottomley committed Jan 12, 2008
1 parent ebdc6b1 commit 11de7fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0033bb477e93f5f6ce9dae7a1f2aa5e5a8ebabd3
refs/heads/master: 3be38e7a351a88e0fcf1565661cc94d1992fcad9
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/atari_NCR5380.c
Original file line number Diff line number Diff line change
Expand Up @@ -1868,7 +1868,7 @@ static int do_abort(struct Scsi_Host *host)
* the target sees, so we just handshake.
*/

while (!(tmp = NCR5380_read(STATUS_REG)) & SR_REQ)
while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ))
;

NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/sun3_NCR5380.c
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ static int do_abort (struct Scsi_Host *host)
* the target sees, so we just handshake.
*/

while (!(tmp = NCR5380_read(STATUS_REG)) & SR_REQ);
while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ));

NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));

Expand Down

0 comments on commit 11de7fc

Please sign in to comment.