Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 185821
b: refs/heads/master
c: c3be57b
h: refs/heads/master
i:
  185819: 8118f96
v: v3
  • Loading branch information
Russell King authored and David S. Miller committed Jan 12, 2010
1 parent f2b75b4 commit 4b5cfea
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: f75d4a238770d83d3a0475ce7f34e3fa37de161e
refs/heads/master: c3be57b6f35ef96a980ce84e59d6a5a8ca6184ad
4 changes: 2 additions & 2 deletions trunk/drivers/ide/pdc202xx_old.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ static int pdc202xx_test_irq(ide_hwif_t *hwif)
* bit 7: error, bit 6: interrupting,
* bit 5: FIFO full, bit 4: FIFO empty
*/
return ((sc1d & 0x50) == 0x40) ? 1 : 0;
return ((sc1d & 0x50) == 0x50) ? 1 : 0;
} else {
/*
* bit 3: error, bit 2: interrupting,
* bit 1: FIFO full, bit 0: FIFO empty
*/
return ((sc1d & 0x05) == 0x04) ? 1 : 0;
return ((sc1d & 0x05) == 0x05) ? 1 : 0;
}
}

Expand Down

0 comments on commit 4b5cfea

Please sign in to comment.