Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 705860 | Differences between
and this patch

Collapse All | Expand All

(-)dahdi-linux-3.1.0-97appl/drivers/dahdi/ap400/ap400_drv.c (-4 / +1 lines)
Lines 87-95 Link Here
87
#ifndef IRQF_SHARED
87
#ifndef IRQF_SHARED
88
#define IRQF_SHARED		SA_SHIRQ
88
#define IRQF_SHARED		SA_SHIRQ
89
#endif
89
#endif
90
#ifndef IRQF_DISABLED
91
#define IRQF_DISABLED		SA_INTERRUPT
92
#endif
93
#ifndef __iomem
90
#ifndef __iomem
94
#define __iomem
91
#define __iomem
95
#endif
92
#endif
Lines 2140-2146 Link Here
2140
		wc->tspans[x]->spanflags |= wc->dt->flags;
2137
		wc->tspans[x]->spanflags |= wc->dt->flags;
2141
	}
2138
	}
2142
2139
2143
	if (request_irq(pdev->irq, ap4_interrupt, IRQF_DISABLED | IRQF_SHARED, "ap400", wc))
2140
	if (request_irq(pdev->irq, ap4_interrupt, IRQF_SHARED, "ap400", wc))
2144
	{
2141
	{
2145
		printk("%s: Unable to request IRQ %d\n", wc->variety, pdev->irq);
2142
		printk("%s: Unable to request IRQ %d\n", wc->variety, pdev->irq);
2146
		res = -EIO;
2143
		res = -EIO;

Return to bug 705860