1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 20:31:07 +03:00

[package] fix siit compile with 2.6.30 kernels and superior, when CONFIG_COMPAT_NET_DEV_OPS is not set

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18191 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-10-27 22:50:34 +00:00
parent 8f4d88ab8d
commit 05ccb6dea8

View File

@ -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;