summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-10-27 22:50:34 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-10-27 22:50:34 +0000
commit587fc92e29907a5968d3bce2de8ef3aba510fbaa (patch)
tree469e765c4b3696a023ae8d51926f9c71339f6413 /package
parent4cef53b4e40b0ed11414d5e2a5afc0e281424e47 (diff)
downloadmaster-31e0f0ae-587fc92e29907a5968d3bce2de8ef3aba510fbaa.tar.gz
master-31e0f0ae-587fc92e29907a5968d3bce2de8ef3aba510fbaa.tar.bz2
master-31e0f0ae-587fc92e29907a5968d3bce2de8ef3aba510fbaa.zip
fix siit compile with 2.6.30 kernels and superior, when CONFIG_COMPAT_NET_DEV_OPS is not set
SVN-Revision: 18191
Diffstat (limited to 'package')
-rw-r--r--package/siit/src/siit.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/siit/src/siit.c b/package/siit/src/siit.c
index dddc8ef875..c645a2580d 100644
--- a/package/siit/src/siit.c
+++ b/package/siit/src/siit.c
@@ -1386,10 +1386,19 @@ static bool header_ops_init = false;
static struct header_ops siit_header_ops ____cacheline_aligned;
#endif
+#ifndef CONFIG_COMPAT_NET_DEV_OPS
+static const struct net_device_ops siit_netdev_ops = {
+ .ndo_open = siit_open,
+ .ndo_stop = siit_release,
+ .ndo_start_xmit = siit_xmit,
+};
+#endif
+
/*
* The init function initialize of the SIIT device..
* It is invoked by register_netdev()
*/
+
static void
siit_init(struct net_device *dev)
{
@@ -1399,9 +1408,15 @@ siit_init(struct net_device *dev)
/*
* Assign device function.
*/
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
dev->open = siit_open;
dev->stop = siit_release;
dev->hard_start_xmit = siit_xmit;
+#else
+#ifndef CONFIG_COMPAT_NET_DEV_OPS
+ dev->netdev_ops = &siit_netdev_ops;
+#endif
+#endif
dev->flags |= IFF_NOARP; /* ARP not used */
dev->tx_queue_len = 10;