mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 21:09:53 +02:00
[atheros] enable mtu & mac config options
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22412 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
eb213ae836
commit
9e3ec4031c
@ -25,7 +25,7 @@
|
|||||||
obj-$(CONFIG_DECLANCE) += declance.o
|
obj-$(CONFIG_DECLANCE) += declance.o
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/drivers/net/ar231x.c
|
+++ b/drivers/net/ar231x.c
|
||||||
@@ -0,0 +1,1263 @@
|
@@ -0,0 +1,1266 @@
|
||||||
+/*
|
+/*
|
||||||
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
||||||
+ *
|
+ *
|
||||||
@ -182,11 +182,14 @@
|
|||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+static const struct net_device_ops ar231x_ops = {
|
+static const struct net_device_ops ar231x_ops = {
|
||||||
+ .ndo_open = ar231x_open,
|
+ .ndo_open = ar231x_open,
|
||||||
+ .ndo_stop = ar231x_close,
|
+ .ndo_stop = ar231x_close,
|
||||||
+ .ndo_start_xmit = ar231x_start_xmit,
|
+ .ndo_start_xmit = ar231x_start_xmit,
|
||||||
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
||||||
+ .ndo_do_ioctl = ar231x_ioctl,
|
+ .ndo_do_ioctl = ar231x_ioctl,
|
||||||
|
+ .ndo_change_mtu = eth_change_mtu,
|
||||||
|
+ .ndo_validate_addr = eth_validate_addr,
|
||||||
|
+ .ndo_set_mac_address = eth_mac_addr,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+int __init ar231x_probe(struct platform_device *pdev)
|
+int __init ar231x_probe(struct platform_device *pdev)
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
obj-$(CONFIG_DECLANCE) += declance.o
|
obj-$(CONFIG_DECLANCE) += declance.o
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/drivers/net/ar231x.c
|
+++ b/drivers/net/ar231x.c
|
||||||
@@ -0,0 +1,1263 @@
|
@@ -0,0 +1,1266 @@
|
||||||
+/*
|
+/*
|
||||||
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
||||||
+ *
|
+ *
|
||||||
@ -182,11 +182,14 @@
|
|||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+static const struct net_device_ops ar231x_ops = {
|
+static const struct net_device_ops ar231x_ops = {
|
||||||
+ .ndo_open = ar231x_open,
|
+ .ndo_open = ar231x_open,
|
||||||
+ .ndo_stop = ar231x_close,
|
+ .ndo_stop = ar231x_close,
|
||||||
+ .ndo_start_xmit = ar231x_start_xmit,
|
+ .ndo_start_xmit = ar231x_start_xmit,
|
||||||
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
||||||
+ .ndo_do_ioctl = ar231x_ioctl,
|
+ .ndo_do_ioctl = ar231x_ioctl,
|
||||||
|
+ .ndo_change_mtu = eth_change_mtu,
|
||||||
|
+ .ndo_validate_addr = eth_validate_addr,
|
||||||
|
+ .ndo_set_mac_address = eth_mac_addr,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+int __init ar231x_probe(struct platform_device *pdev)
|
+int __init ar231x_probe(struct platform_device *pdev)
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
obj-$(CONFIG_DECLANCE) += declance.o
|
obj-$(CONFIG_DECLANCE) += declance.o
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/drivers/net/ar231x.c
|
+++ b/drivers/net/ar231x.c
|
||||||
@@ -0,0 +1,1263 @@
|
@@ -0,0 +1,1266 @@
|
||||||
+/*
|
+/*
|
||||||
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
||||||
+ *
|
+ *
|
||||||
@ -182,11 +182,14 @@
|
|||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+static const struct net_device_ops ar231x_ops = {
|
+static const struct net_device_ops ar231x_ops = {
|
||||||
+ .ndo_open = ar231x_open,
|
+ .ndo_open = ar231x_open,
|
||||||
+ .ndo_stop = ar231x_close,
|
+ .ndo_stop = ar231x_close,
|
||||||
+ .ndo_start_xmit = ar231x_start_xmit,
|
+ .ndo_start_xmit = ar231x_start_xmit,
|
||||||
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
||||||
+ .ndo_do_ioctl = ar231x_ioctl,
|
+ .ndo_do_ioctl = ar231x_ioctl,
|
||||||
|
+ .ndo_change_mtu = eth_change_mtu,
|
||||||
|
+ .ndo_validate_addr = eth_validate_addr,
|
||||||
|
+ .ndo_set_mac_address = eth_mac_addr,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+int __init ar231x_probe(struct platform_device *pdev)
|
+int __init ar231x_probe(struct platform_device *pdev)
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
obj-$(CONFIG_DECLANCE) += declance.o
|
obj-$(CONFIG_DECLANCE) += declance.o
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/drivers/net/ar231x.c
|
+++ b/drivers/net/ar231x.c
|
||||||
@@ -0,0 +1,1263 @@
|
@@ -0,0 +1,1266 @@
|
||||||
+/*
|
+/*
|
||||||
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
+ * ar231x.c: Linux driver for the Atheros AR231x Ethernet device.
|
||||||
+ *
|
+ *
|
||||||
@ -182,11 +182,14 @@
|
|||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+static const struct net_device_ops ar231x_ops = {
|
+static const struct net_device_ops ar231x_ops = {
|
||||||
+ .ndo_open = ar231x_open,
|
+ .ndo_open = ar231x_open,
|
||||||
+ .ndo_stop = ar231x_close,
|
+ .ndo_stop = ar231x_close,
|
||||||
+ .ndo_start_xmit = ar231x_start_xmit,
|
+ .ndo_start_xmit = ar231x_start_xmit,
|
||||||
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
+ .ndo_set_multicast_list = ar231x_multicast_list,
|
||||||
+ .ndo_do_ioctl = ar231x_ioctl,
|
+ .ndo_do_ioctl = ar231x_ioctl,
|
||||||
|
+ .ndo_change_mtu = eth_change_mtu,
|
||||||
|
+ .ndo_validate_addr = eth_validate_addr,
|
||||||
|
+ .ndo_set_mac_address = eth_mac_addr,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+int __init ar231x_probe(struct platform_device *pdev)
|
+int __init ar231x_probe(struct platform_device *pdev)
|
||||||
@ -333,7 +336,7 @@
|
|||||||
+ filter |= MAC_CONTROL_PR;
|
+ filter |= MAC_CONTROL_PR;
|
||||||
+ else
|
+ else
|
||||||
+ filter &= ~MAC_CONTROL_PR;
|
+ filter &= ~MAC_CONTROL_PR;
|
||||||
+ if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 0))
|
+ if ((dev->flags & IFF_ALLMULTI) || (netdev_mc_count(dev) > 0))
|
||||||
+ filter |= MAC_CONTROL_PM;
|
+ filter |= MAC_CONTROL_PM;
|
||||||
+ else
|
+ else
|
||||||
+ filter &= ~MAC_CONTROL_PM;
|
+ filter &= ~MAC_CONTROL_PM;
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
--- a/drivers/net/ar231x.c
|
|
||||||
+++ b/drivers/net/ar231x.c
|
|
||||||
@@ -321,7 +321,7 @@ static void ar231x_multicast_list(struct
|
|
||||||
filter |= MAC_CONTROL_PR;
|
|
||||||
else
|
|
||||||
filter &= ~MAC_CONTROL_PR;
|
|
||||||
- if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 0))
|
|
||||||
+ if ((dev->flags & IFF_ALLMULTI) || (netdev_mc_count(dev) > 0))
|
|
||||||
filter |= MAC_CONTROL_PM;
|
|
||||||
else
|
|
||||||
filter &= ~MAC_CONTROL_PM;
|
|
Loading…
Reference in New Issue
Block a user