mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 02:04:05 +08:00
[PATCH] Char: isicom, check card state in isr
Check if the card really interrupted us by reading its IO space and eventualy return IRQ_NONE. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f0a0ba6d69
commit
cb4a10ccb0
@ -540,6 +540,11 @@ static irqreturn_t isicom_interrupt(int irq, void *dev_id)
|
|||||||
return IRQ_NONE;
|
return IRQ_NONE;
|
||||||
|
|
||||||
base = card->base;
|
base = card->base;
|
||||||
|
|
||||||
|
/* did the card interrupt us? */
|
||||||
|
if (!(inw(base + 0x0e) & 0x02))
|
||||||
|
return IRQ_NONE;
|
||||||
|
|
||||||
spin_lock(&card->card_lock);
|
spin_lock(&card->card_lock);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user