aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-07-17 16:20:25 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-07-17 16:20:25 +0000
commit12b429b3a22e870677c36d758f1874933f9a572c (patch)
treefbe30fe3aa1ff9edd3d55707b78c1547623e303f /target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch
parentfe05e1f37a10a417befa038a58bfe5f0388a2e2f (diff)
downloadupstream-12b429b3a22e870677c36d758f1874933f9a572c.tar.gz
upstream-12b429b3a22e870677c36d758f1874933f9a572c.tar.bz2
upstream-12b429b3a22e870677c36d758f1874933f9a572c.zip
get rid of linux 2.6.29
SVN-Revision: 16883
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch')
-rw-r--r--target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch b/target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch
deleted file mode 100644
index d139c5330d..0000000000
--- a/target/linux/ar71xx/patches-2.6.29/800-ag71xx-remove-netdev-arg-from-napi-calls.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/drivers/net/ag71xx/ag71xx_main.c
-+++ b/drivers/net/ag71xx/ag71xx_main.c
-@@ -561,7 +561,7 @@ static void ag71xx_oom_timer_handler(uns
- struct net_device *dev = (struct net_device *) data;
- struct ag71xx *ag = netdev_priv(dev);
-
-- netif_rx_schedule(dev, &ag->napi);
-+ netif_rx_schedule(&ag->napi);
- }
-
- static void ag71xx_tx_timeout(struct net_device *dev)
-@@ -717,7 +717,7 @@ static int ag71xx_poll(struct napi_struc
- DBG("%s: disable polling mode, done=%d, limit=%d\n",
- dev->name, done, limit);
-
-- netif_rx_complete(dev, napi);
-+ netif_rx_complete(napi);
-
- /* enable interrupts */
- spin_lock_irqsave(&ag->lock, flags);
-@@ -736,7 +736,7 @@ static int ag71xx_poll(struct napi_struc
- printk(KERN_DEBUG "%s: out of memory\n", dev->name);
-
- mod_timer(&ag->oom_timer, jiffies + AG71XX_OOM_REFILL);
-- netif_rx_complete(dev, napi);
-+ netif_rx_complete(napi);
- return 0;
- }
-
-@@ -766,7 +766,7 @@ static irqreturn_t ag71xx_interrupt(int
- if (likely(status & AG71XX_INT_POLL)) {
- ag71xx_int_disable(ag, AG71XX_INT_POLL);
- DBG("%s: enable polling mode\n", dev->name);
-- netif_rx_schedule(dev, &ag->napi);
-+ netif_rx_schedule(&ag->napi);
- }
-
- return IRQ_HANDLED;