Skip to content

Commit

Permalink
net/b43: don't return IRQ_HANDLED if nothing was done
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Sebastian Andrzej Siewior authored and John W. Linville committed Jul 8, 2011
1 parent 21a18f2 commit cae5614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/b43/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,7 @@ static irqreturn_t b43_do_interrupt(struct b43_wldev *dev)
return IRQ_NONE;
reason &= dev->irq_mask;
if (!reason)
return IRQ_HANDLED;
return IRQ_NONE;

dev->dma_reason[0] = b43_read32(dev, B43_MMIO_DMA0_REASON)
& 0x0001DC00;
Expand Down

0 comments on commit cae5614

Please sign in to comment.