Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122710
b: refs/heads/master
c: 9a4a842
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Dec 15, 2008
1 parent b095cbd commit 01ce64f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8b124a8e14c04378466ddfe63e41fc5035f957eb
refs/heads/master: 9a4a84294b0d60b8c287131478f743ba2bc68949
11 changes: 10 additions & 1 deletion trunk/drivers/net/8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,16 @@ EXPORT_SYMBOL(ei_netdev_ops);

struct net_device *__alloc_ei_netdev(int size)
{
return ____alloc_ei_netdev(size);
struct net_device *dev = ____alloc_ei_netdev(size);
#ifdef CONFIG_COMPAT_NET_DEV_OPS
if (dev) {
dev->hard_start_xmit = ei_start_xmit;
dev->get_stats = ei_get_stats;
dev->set_multicast_list = ei_set_multicast_list;
dev->tx_timeout = ei_tx_timeout;
}
#endif
return dev;
}
EXPORT_SYMBOL(__alloc_ei_netdev);

Expand Down
11 changes: 10 additions & 1 deletion trunk/drivers/net/8390p.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,16 @@ EXPORT_SYMBOL(eip_netdev_ops);

struct net_device *__alloc_eip_netdev(int size)
{
return ____alloc_ei_netdev(size);
struct net_device *dev = ____alloc_ei_netdev(size);
#ifdef CONFIG_COMPAT_NET_DEV_OPS
if (dev) {
dev->hard_start_xmit = eip_start_xmit;
dev->get_stats = eip_get_stats;
dev->set_multicast_list = eip_set_multicast_list;
dev->tx_timeout = eip_tx_timeout;
}
#endif
return dev;
}
EXPORT_SYMBOL(__alloc_eip_netdev);

Expand Down
6 changes: 0 additions & 6 deletions trunk/drivers/net/lib8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -1010,12 +1010,6 @@ static void ethdev_setup(struct net_device *dev)
if (ei_debug > 1)
printk(version);

#ifdef CONFIG_COMPAT_NET_DEV_OPS
dev->hard_start_xmit = ei_start_xmit;
dev->get_stats = ei_get_stats;
dev->set_multicast_list = ei_set_multicast_list;
dev->tx_timeout = __ei_tx_timeout;
#endif
ether_setup(dev);

spin_lock_init(&ei_local->page_lock);
Expand Down

0 comments on commit 01ce64f

Please sign in to comment.