diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-12-04 20:27:03 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-12-04 20:27:03 +0000 |
commit | 9bb13d59d9bc2fbce00c59ff47775aa5f2fb363d (patch) | |
tree | 1f278641a045d3f9089594df9b5c792cc5751f1c /target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch | |
parent | 3184772820190de3dfca6528dc67002974eb96b5 (diff) | |
download | upstream-9bb13d59d9bc2fbce00c59ff47775aa5f2fb363d.tar.gz upstream-9bb13d59d9bc2fbce00c59ff47775aa5f2fb363d.tar.bz2 upstream-9bb13d59d9bc2fbce00c59ff47775aa5f2fb363d.zip |
ar71xx: experimental 2.6.32 support
SVN-Revision: 18638
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch b/target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch new file mode 100644 index 0000000000..3824d55a65 --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.32/802-ag71xx-use-netdev-ops.patch @@ -0,0 +1,37 @@ +--- a/drivers/net/ag71xx/ag71xx_main.c ++++ b/drivers/net/ag71xx/ag71xx_main.c +@@ -809,6 +809,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; +@@ -884,14 +896,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); |