projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
e1000: add CONFIG_E1000_NAPI=y for older kernels
[openwrt.git]
/
package
/
siit
/
src
/
siit.c
diff --git
a/package/siit/src/siit.c
b/package/siit/src/siit.c
index
c645a25
..
f458f5d
100644
(file)
--- a/
package/siit/src/siit.c
+++ b/
package/siit/src/siit.c
@@
-1386,7
+1386,7
@@
static bool header_ops_init = false;
static struct header_ops siit_header_ops ____cacheline_aligned;
#endif
static struct header_ops siit_header_ops ____cacheline_aligned;
#endif
-#if
ndef CONFIG_COMPAT_NET_DEV_OPS
+#if
!(defined CONFIG_COMPAT_NET_DEV_OPS) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
static const struct net_device_ops siit_netdev_ops = {
.ndo_open = siit_open,
.ndo_stop = siit_release,
static const struct net_device_ops siit_netdev_ops = {
.ndo_open = siit_open,
.ndo_stop = siit_release,
@@
-1413,7
+1413,7
@@
siit_init(struct net_device *dev)
dev->stop = siit_release;
dev->hard_start_xmit = siit_xmit;
#else
dev->stop = siit_release;
dev->hard_start_xmit = siit_xmit;
#else
-#if
ndef CONFIG_COMPAT_NET_DEV_OPS
+#if
!(defined CONFIG_COMPAT_NET_DEV_OPS) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
dev->netdev_ops = &siit_netdev_ops;
#endif
#endif
dev->netdev_ops = &siit_netdev_ops;
#endif
#endif
This page took
0.022526 seconds
and
4
git commands to generate.