diff options
Diffstat (limited to 'drivers/net/8390.c')
-rw-r--r-- | drivers/net/8390.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/net/8390.c b/drivers/net/8390.c index 029ad08f0330..fbe609a51e02 100644 --- a/drivers/net/8390.c +++ b/drivers/net/8390.c | |||
@@ -72,7 +72,16 @@ EXPORT_SYMBOL(ei_netdev_ops); | |||
72 | 72 | ||
73 | struct net_device *__alloc_ei_netdev(int size) | 73 | struct net_device *__alloc_ei_netdev(int size) |
74 | { | 74 | { |
75 | return ____alloc_ei_netdev(size); | 75 | struct net_device *dev = ____alloc_ei_netdev(size); |
76 | #ifdef CONFIG_COMPAT_NET_DEV_OPS | ||
77 | if (dev) { | ||
78 | dev->hard_start_xmit = ei_start_xmit; | ||
79 | dev->get_stats = ei_get_stats; | ||
80 | dev->set_multicast_list = ei_set_multicast_list; | ||
81 | dev->tx_timeout = ei_tx_timeout; | ||
82 | } | ||
83 | #endif | ||
84 | return dev; | ||
76 | } | 85 | } |
77 | EXPORT_SYMBOL(__alloc_ei_netdev); | 86 | EXPORT_SYMBOL(__alloc_ei_netdev); |
78 | 87 | ||