summaryrefslogtreecommitdiffstats
path: root/package/acx
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-06 12:22:35 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-06 12:22:35 +0000
commit4f0dc8401bc5043984e31a1690edfb4b0381dedd (patch)
treeafce839a763f368e01bada02dfd9eb1b62737ba8 /package/acx
parent8e139185b290575aebe34b7cddfe70be3c317cd4 (diff)
[ar7] migrate acx to netdev_ops, required for later kernels
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20014 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx')
-rw-r--r--package/acx/patches/006-netdev_ops.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/package/acx/patches/006-netdev_ops.patch b/package/acx/patches/006-netdev_ops.patch
new file mode 100644
index 000000000..92382a0cf
--- /dev/null
+++ b/package/acx/patches/006-netdev_ops.patch
@@ -0,0 +1,41 @@
+Index: acx-20080210/pci.c
+===================================================================
+--- acx-20080210.orig/pci.c 2010-03-06 11:38:01.000000000 +0100
++++ acx-20080210/pci.c 2010-03-06 11:45:02.000000000 +0100
+@@ -4135,6 +4135,18 @@
+ { 0, 0, 0 },
+ };
+
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)
++static const struct net_device_ops acx_netdev_ops = {
++ .ndo_open = &acxpci_e_open,
++ .ndo_stop = &acxpci_e_close,
++ .ndo_start_xmit = &acx_i_start_xmit,
++ .ndo_get_stats = &acx_e_get_stats,
++ .ndo_set_multicast_list = &acxpci_i_set_multicast_list,
++ .ndo_tx_timeout = &acxpci_i_tx_timeout,
++ .ndo_change_mtu = &acx_e_change_mtu,
++};
++#endif
++
+ static __devinit int vlynq_probe(struct vlynq_device *vdev,
+ struct vlynq_device_id *id)
+ {
+@@ -4191,6 +4203,7 @@
+ goto fail_alloc_netdev;
+ }
+ ether_setup(ndev);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31)
+ ndev->open = &acxpci_e_open;
+ ndev->stop = &acxpci_e_close;
+ ndev->hard_start_xmit = &acx_i_start_xmit;
+@@ -4202,6 +4215,9 @@
+ ndev->set_multicast_list = &acxpci_i_set_multicast_list;
+ ndev->tx_timeout = &acxpci_i_tx_timeout;
+ ndev->change_mtu = &acx_e_change_mtu;
++#else
++ ndev->netdev_ops = &acx_netdev_ops;
++#endif
+ ndev->watchdog_timeo = 4 * HZ;
+
+ adev = ndev2adev(ndev);