Commit c58c21c7 authored by nshmyrev@yandex.ru's avatar nshmyrev@yandex.ru Committed by Linus Torvalds

[PATCH] v4l: 797: more intellect on clearing in bits on irq lock

- More intellect on clearing in bits on irq lock.
Signed-off-by: default avatarNickolay V. Shmyrev <&lt;nshmyrev@yandex.ru&gt;>
Signed-off-by: default avatarNickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cf1c5d1d
...@@ -3736,10 +3736,22 @@ static irqreturn_t bttv_irq(int irq, void *dev_id, struct pt_regs * regs) ...@@ -3736,10 +3736,22 @@ static irqreturn_t bttv_irq(int irq, void *dev_id, struct pt_regs * regs)
count++; count++;
if (count > 4) { if (count > 4) {
btwrite(0, BT848_INT_MASK);
printk(KERN_ERR if (count > 8 || !(astat & BT848_INT_GPINT)) {
"bttv%d: IRQ lockup, cleared int mask [", btv->c.nr); btwrite(0, BT848_INT_MASK);
printk(KERN_ERR
"bttv%d: IRQ lockup, cleared int mask [", btv->c.nr);
} else {
printk(KERN_ERR
"bttv%d: IRQ lockup, clearing GPINT from int mask [", btv->c.nr);
btwrite(btread(BT848_INT_MASK) & (-1 ^ BT848_INT_GPINT),
BT848_INT_MASK);
};
bttv_print_irqbits(stat,astat); bttv_print_irqbits(stat,astat);
printk("]\n"); printk("]\n");
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment