Staging: vme: Add syncronize interrupts before removing callback
As identified by Jiri, there is no syncronisation before callback is removed. Signed-off-by: Martyn Welch <martyn.welch@gefanuc.com> Cc: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
51a569f757
commit
75155020c8
@@ -480,6 +480,7 @@ int tsi148_request_irq(int level, int statid,
|
|||||||
void tsi148_free_irq(int level, int statid)
|
void tsi148_free_irq(int level, int statid)
|
||||||
{
|
{
|
||||||
u32 tmp;
|
u32 tmp;
|
||||||
|
struct pci_dev *pdev;
|
||||||
|
|
||||||
/* Get semaphore */
|
/* Get semaphore */
|
||||||
down(&(vme_irq));
|
down(&(vme_irq));
|
||||||
@@ -495,6 +496,10 @@ void tsi148_free_irq(int level, int statid)
|
|||||||
tmp = ioread32be(tsi148_bridge->base + TSI148_LCSR_INTEO);
|
tmp = ioread32be(tsi148_bridge->base + TSI148_LCSR_INTEO);
|
||||||
tmp &= ~TSI148_LCSR_INTEO_IRQEO[level - 1];
|
tmp &= ~TSI148_LCSR_INTEO_IRQEO[level - 1];
|
||||||
iowrite32be(tmp, tsi148_bridge->base + TSI148_LCSR_INTEO);
|
iowrite32be(tmp, tsi148_bridge->base + TSI148_LCSR_INTEO);
|
||||||
|
|
||||||
|
pdev = container_of(tsi148_bridge->parent, struct pci_dev, dev);
|
||||||
|
|
||||||
|
synchronize_irq(pdev->irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
tsi148_bridge->irq[level - 1].callback[statid].func = NULL;
|
tsi148_bridge->irq[level - 1].callback[statid].func = NULL;
|
||||||
|
Reference in New Issue
Block a user