Skip to content

Commit

Permalink
[SCSI] 53c7xx: brackets fix in uncompiled code
Browse files Browse the repository at this point in the history
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
Mariusz Kozlowski authored and James Bottomley committed Feb 7, 2007
1 parent af0db3a commit a84cb1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/scsi/53c7xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -4400,7 +4400,7 @@ abort_connected (struct Scsi_Host *host) {
* account the current synchronous offset)
*/

sstat = (NCR53c8x0_read8 (SSTAT2_REG);
sstat = NCR53c8x0_read8 (SSTAT2_REG);
offset = OFFSET (sstat & SSTAT2_FF_MASK) >> SSTAT2_FF_SHIFT;
phase = sstat & SSTAT2_PHASE_MASK;

Expand Down Expand Up @@ -5423,7 +5423,7 @@ insn_to_offset (Scsi_Cmnd *cmd, u32 *insn) {
--buffers, offset += segment->length, ++segment)
#if 0
printk("scsi%d: comparing 0x%p to 0x%p\n",
cmd->device->host->host_no, saved, page_address(segment->page+segment->offset);
cmd->device->host->host_no, saved, page_address(segment->page+segment->offset));
#else
;
#endif
Expand Down

0 comments on commit a84cb1e

Please sign in to comment.