Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 136081
b: refs/heads/master
c: 5f352f9
h: refs/heads/master
i:
  136079: 5cec965
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Mar 27, 2009
1 parent 1008c56 commit 9b04038
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 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: 32670c36d0222e2fdfa9673bb878e0f347411cd4
refs/heads/master: 5f352f9a1c8d53270970f4efcf5496cb9b01c4a8
23 changes: 18 additions & 5 deletions trunk/drivers/net/smc-ultra32.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,22 @@ struct net_device * __init ultra32_probe(int unit)
return ERR_PTR(err);
}


static const struct net_device_ops ultra32_netdev_ops = {
.ndo_open = ultra32_open,
.ndo_stop = ultra32_close,
.ndo_start_xmit = ei_start_xmit,
.ndo_tx_timeout = ei_tx_timeout,
.ndo_get_stats = ei_get_stats,
.ndo_set_multicast_list = ei_set_multicast_list,
.ndo_validate_addr = eth_validate_addr,
.ndo_set_mac_address = eth_mac_addr,
.ndo_change_mtu = eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = ei_poll,
#endif
};

static int __init ultra32_probe1(struct net_device *dev, int ioaddr)
{
int i, edge, media, retval;
Expand Down Expand Up @@ -273,11 +289,8 @@ static int __init ultra32_probe1(struct net_device *dev, int ioaddr)
ei_status.block_output = &ultra32_block_output;
ei_status.get_8390_hdr = &ultra32_get_8390_hdr;
ei_status.reset_8390 = &ultra32_reset_8390;
dev->open = &ultra32_open;
dev->stop = &ultra32_close;
#ifdef CONFIG_NET_POLL_CONTROLLER
dev->poll_controller = ei_poll;
#endif

dev->netdev_ops = &ultra32_netdev_ops;
NS8390_init(dev, 0);

return 0;
Expand Down

0 comments on commit 9b04038

Please sign in to comment.