Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40975
b: refs/heads/master
c: 107e716
h: refs/heads/master
i:
  40973: ccf5f07
  40971: 2843600
  40967: 600a522
  40959: 33a155d
v: v3
  • Loading branch information
Jean Delvare authored and James Bottomley committed Nov 10, 2006
1 parent 0c16c48 commit e19e50c
Show file tree
Hide file tree
Showing 2 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: 82a0d7b5829ebd033b7f808c026ab43509913692
refs/heads/master: 107e716b3487df5e2940ebe3338d935306efc78b
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/gdth.c
Original file line number Diff line number Diff line change
Expand Up @@ -3531,7 +3531,7 @@ static irqreturn_t gdth_interrupt(int irq,void *dev_id)
IStatus &= ~0x80;
#ifdef INT_COAL
if (coalesced)
ha->status = pcs->ext_status && 0xffff;
ha->status = pcs->ext_status & 0xffff;
else
#endif
ha->status = gdth_readw(&dp6m_ptr->i960r.status);
Expand All @@ -3543,7 +3543,7 @@ static irqreturn_t gdth_interrupt(int irq,void *dev_id)
if (coalesced) {
ha->info = pcs->info0;
ha->info2 = pcs->info1;
ha->service = (pcs->ext_status >> 16) && 0xffff;
ha->service = (pcs->ext_status >> 16) & 0xffff;
} else
#endif
{
Expand Down

0 comments on commit e19e50c

Please sign in to comment.