From 5f0333d896c89748f6a54dcd36b4fa6e34264bbf Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sat, 30 May 2009 09:53:59 +0000 Subject: cleanup old patches and kernel configuration SVN-Revision: 16204 --- .../patches-2.6.28/015-korina_irqf_flags.patch | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 target/linux/rb532/patches-2.6.28/015-korina_irqf_flags.patch (limited to 'target/linux/rb532/patches-2.6.28/015-korina_irqf_flags.patch') diff --git a/target/linux/rb532/patches-2.6.28/015-korina_irqf_flags.patch b/target/linux/rb532/patches-2.6.28/015-korina_irqf_flags.patch deleted file mode 100644 index 12b8036faa..0000000000 --- a/target/linux/rb532/patches-2.6.28/015-korina_irqf_flags.patch +++ /dev/null @@ -1,47 +0,0 @@ -As the kernel warning states: "IRQF_DISABLED is not guaranteed on shared -IRQs". Since these IRQs' values are hardcoded and my test system doesn't -show any shared use of IRQs at all, rather make them non-shared than -non-disabled. - -Signed-off-by: Phil Sutter ---- - drivers/net/korina.c | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/net/korina.c -+++ b/drivers/net/korina.c -@@ -998,14 +998,14 @@ static int korina_open(struct net_device - * that handles the Done Finished - * Ovr and Und Events */ - ret = request_irq(lp->rx_irq, &korina_rx_dma_interrupt, -- IRQF_SHARED | IRQF_DISABLED, "Korina ethernet Rx", dev); -+ IRQF_DISABLED, "Korina ethernet Rx", dev); - if (ret < 0) { - printk(KERN_ERR DRV_NAME "%s: unable to get Rx DMA IRQ %d\n", - dev->name, lp->rx_irq); - goto err_release; - } - ret = request_irq(lp->tx_irq, &korina_tx_dma_interrupt, -- IRQF_SHARED | IRQF_DISABLED, "Korina ethernet Tx", dev); -+ IRQF_DISABLED, "Korina ethernet Tx", dev); - if (ret < 0) { - printk(KERN_ERR DRV_NAME "%s: unable to get Tx DMA IRQ %d\n", - dev->name, lp->tx_irq); -@@ -1014,7 +1014,7 @@ static int korina_open(struct net_device - - /* Install handler for overrun error. */ - ret = request_irq(lp->ovr_irq, &korina_ovr_interrupt, -- IRQF_SHARED | IRQF_DISABLED, "Ethernet Overflow", dev); -+ IRQF_DISABLED, "Ethernet Overflow", dev); - if (ret < 0) { - printk(KERN_ERR DRV_NAME"%s: unable to get OVR IRQ %d\n", - dev->name, lp->ovr_irq); -@@ -1023,7 +1023,7 @@ static int korina_open(struct net_device - - /* Install handler for underflow error. */ - ret = request_irq(lp->und_irq, &korina_und_interrupt, -- IRQF_SHARED | IRQF_DISABLED, "Ethernet Underflow", dev); -+ IRQF_DISABLED, "Ethernet Underflow", dev); - if (ret < 0) { - printk(KERN_ERR DRV_NAME "%s: unable to get UND IRQ %d\n", - dev->name, lp->und_irq); -- cgit v1.2.3