Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 155123
b: refs/heads/master
c: 35976d4
h: refs/heads/master
i:
  155121: d0aa00c
  155119: 963c746
v: v3
  • Loading branch information
Florian Fainelli authored and David S. Miller committed Jul 8, 2009
1 parent db33eba commit 56ea115
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 345aa031207d02d7438c1aa96ed9315911ecd745
refs/heads/master: 35976d4d557c5017c2180a083e8bd970cf73f3d5
5 changes: 4 additions & 1 deletion trunk/drivers/net/r6040.c
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,11 @@ static irqreturn_t r6040_interrupt(int irq, void *dev_id)
/* Read MISR status and clear */
status = ioread16(ioaddr + MISR);

if (status == 0x0000 || status == 0xffff)
if (status == 0x0000 || status == 0xffff) {
/* Restore RDC MAC interrupt */
iowrite16(misr, ioaddr + MIER);
return IRQ_NONE;
}

/* RX interrupt request */
if (status & RX_INTS) {
Expand Down

0 comments on commit 56ea115

Please sign in to comment.