Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3186ae8f authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

3c509: convert to net_device_ops

parent 1722de50
Loading
Loading
Loading
Loading
+16 −9
Original line number Original line Diff line number Diff line
@@ -537,6 +537,21 @@ static struct mca_driver el3_mca_driver = {
static int mca_registered;
static int mca_registered;
#endif /* CONFIG_MCA */
#endif /* CONFIG_MCA */


static const struct net_device_ops netdev_ops = {
	.ndo_open 		= el3_open,
	.ndo_stop	 	= el3_close,
	.ndo_start_xmit 	= el3_start_xmit,
	.ndo_get_stats 		= el3_get_stats,
	.ndo_set_multicast_list = set_multicast_list,
	.ndo_tx_timeout 	= el3_tx_timeout,
	.ndo_change_mtu		= eth_change_mtu,
	.ndo_set_mac_address 	= eth_mac_addr,
	.ndo_validate_addr	= eth_validate_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= el3_poll_controller,
#endif
};

static int __devinit el3_common_init(struct net_device *dev)
static int __devinit el3_common_init(struct net_device *dev)
{
{
	struct el3_private *lp = netdev_priv(dev);
	struct el3_private *lp = netdev_priv(dev);
@@ -553,16 +568,8 @@ static int __devinit el3_common_init(struct net_device *dev)
	}
	}


	/* The EL3-specific entries in the device structure. */
	/* The EL3-specific entries in the device structure. */
	dev->open = &el3_open;
	dev->netdev_ops = &netdev_ops;
	dev->hard_start_xmit = &el3_start_xmit;
	dev->stop = &el3_close;
	dev->get_stats = &el3_get_stats;
	dev->set_multicast_list = &set_multicast_list;
	dev->tx_timeout = el3_tx_timeout;
	dev->watchdog_timeo = TX_TIMEOUT;
	dev->watchdog_timeo = TX_TIMEOUT;
#ifdef CONFIG_NET_POLL_CONTROLLER
	dev->poll_controller = el3_poll_controller;
#endif
	SET_ETHTOOL_OPS(dev, &ethtool_ops);
	SET_ETHTOOL_OPS(dev, &ethtool_ops);


	err = register_netdev(dev);
	err = register_netdev(dev);