mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 15:44:02 +08:00
3c574_cs: disable irq before calling el3_interrupt
3c574_cs, 3c589_cs: disable irq before calling el3_interrupt in the media_check function. Signed-off-by: Ken Kawasaki <ken_kawasaki@spring.nifty.jp> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e0802793f6
commit
671c8806c2
@ -912,7 +912,11 @@ static void media_check(unsigned long arg)
|
||||
if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) {
|
||||
if (!lp->fast_poll)
|
||||
printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name);
|
||||
|
||||
local_irq_save(flags);
|
||||
el3_interrupt(dev->irq, dev);
|
||||
local_irq_restore(flags);
|
||||
|
||||
lp->fast_poll = HZ;
|
||||
}
|
||||
if (lp->fast_poll) {
|
||||
|
@ -711,7 +711,11 @@ static void media_check(unsigned long arg)
|
||||
(inb(ioaddr + EL3_TIMER) == 0xff)) {
|
||||
if (!lp->fast_poll)
|
||||
printk(KERN_WARNING "%s: interrupt(s) dropped!\n", dev->name);
|
||||
|
||||
local_irq_save(flags);
|
||||
el3_interrupt(dev->irq, dev);
|
||||
local_irq_restore(flags);
|
||||
|
||||
lp->fast_poll = HZ;
|
||||
}
|
||||
if (lp->fast_poll) {
|
||||
|
Loading…
Reference in New Issue
Block a user