From 07282cf2232fe3fef7b66e2a6694c2aec6250463 Mon Sep 17 00:00:00 2001 From: juhosg Date: Fri, 11 Dec 2009 16:41:40 +0000 Subject: ar71xx: merge ag71xx specific patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18751 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...-ag71xx-remove-netdev-arg-from-napi-calls.patch | 38 ---------------------- ...01-ag71xx-remove-redundant-napi-functions.patch | 38 ---------------------- .../patches-2.6.30/802-ag71xx-use-netdev-ops.patch | 37 --------------------- 3 files changed, 113 deletions(-) delete mode 100644 target/linux/ar71xx/patches-2.6.30/800-ag71xx-remove-netdev-arg-from-napi-calls.patch delete mode 100644 target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch delete mode 100644 target/linux/ar71xx/patches-2.6.30/802-ag71xx-use-netdev-ops.patch (limited to 'target/linux/ar71xx/patches-2.6.30') diff --git a/target/linux/ar71xx/patches-2.6.30/800-ag71xx-remove-netdev-arg-from-napi-calls.patch b/target/linux/ar71xx/patches-2.6.30/800-ag71xx-remove-netdev-arg-from-napi-calls.patch deleted file mode 100644 index bd2294302..000000000 --- a/target/linux/ar71xx/patches-2.6.30/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 -@@ -595,7 +595,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) -@@ -751,7 +751,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); -@@ -770,7 +770,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; - } - -@@ -800,7 +800,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; diff --git a/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch b/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch deleted file mode 100644 index b5e779bcf..000000000 --- a/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- a/drivers/net/ag71xx/ag71xx_main.c -+++ b/drivers/net/ag71xx/ag71xx_main.c -@@ -595,7 +595,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(&ag->napi); -+ napi_schedule(&ag->napi); - } - - static void ag71xx_tx_timeout(struct net_device *dev) -@@ -751,7 +751,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(napi); -+ napi_complete(napi); - - /* enable interrupts */ - spin_lock_irqsave(&ag->lock, flags); -@@ -770,7 +770,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(napi); -+ napi_complete(napi); - return 0; - } - -@@ -800,7 +800,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(&ag->napi); -+ napi_schedule(&ag->napi); - } - - return IRQ_HANDLED; diff --git a/target/linux/ar71xx/patches-2.6.30/802-ag71xx-use-netdev-ops.patch b/target/linux/ar71xx/patches-2.6.30/802-ag71xx-use-netdev-ops.patch deleted file mode 100644 index f619611c6..000000000 --- a/target/linux/ar71xx/patches-2.6.30/802-ag71xx-use-netdev-ops.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/drivers/net/ag71xx/ag71xx_main.c -+++ b/drivers/net/ag71xx/ag71xx_main.c -@@ -811,6 +811,18 @@ static void ag71xx_set_multicast_list(st - /* TODO */ - } - -+static const struct net_device_ops ag71xx_netdev_ops = { -+ .ndo_open = ag71xx_open, -+ .ndo_stop = ag71xx_stop, -+ .ndo_start_xmit = ag71xx_hard_start_xmit, -+ .ndo_set_multicast_list = ag71xx_set_multicast_list, -+ .ndo_do_ioctl = ag71xx_do_ioctl, -+ .ndo_tx_timeout = ag71xx_tx_timeout, -+ .ndo_change_mtu = eth_change_mtu, -+ .ndo_set_mac_address = eth_mac_addr, -+ .ndo_validate_addr = eth_validate_addr, -+}; -+ - static int __init ag71xx_probe(struct platform_device *pdev) - { - struct net_device *dev; -@@ -886,14 +898,9 @@ static int __init ag71xx_probe(struct pl - } - - dev->base_addr = (unsigned long)ag->mac_base; -- dev->open = ag71xx_open; -- dev->stop = ag71xx_stop; -- dev->hard_start_xmit = ag71xx_hard_start_xmit; -- dev->set_multicast_list = ag71xx_set_multicast_list; -- dev->do_ioctl = ag71xx_do_ioctl; -+ dev->netdev_ops = &ag71xx_netdev_ops; - dev->ethtool_ops = &ag71xx_ethtool_ops; - -- dev->tx_timeout = ag71xx_tx_timeout; - INIT_WORK(&ag->restart_work, ag71xx_restart_work_func); - - init_timer(&ag->oom_timer); -- cgit v1.2.3