Commit c7670718 authored by David S. Miller's avatar David S. Miller

sunlance: Convert to net_device_ops.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2199b87a
...@@ -1311,6 +1311,14 @@ static const struct ethtool_ops sparc_lance_ethtool_ops = { ...@@ -1311,6 +1311,14 @@ static const struct ethtool_ops sparc_lance_ethtool_ops = {
.get_link = sparc_lance_get_link, .get_link = sparc_lance_get_link,
}; };
static const struct net_device_ops sparc_lance_ops = {
.ndo_open = lance_open,
.ndo_stop = lance_close,
.ndo_start_xmit = lance_start_xmit,
.ndo_set_multicast_list = lance_set_multicast,
.ndo_tx_timeout = lance_tx_timeout,
};
static int __devinit sparc_lance_probe_one(struct of_device *op, static int __devinit sparc_lance_probe_one(struct of_device *op,
struct of_device *ledma, struct of_device *ledma,
struct of_device *lebuffer) struct of_device *lebuffer)
...@@ -1462,13 +1470,9 @@ static int __devinit sparc_lance_probe_one(struct of_device *op, ...@@ -1462,13 +1470,9 @@ static int __devinit sparc_lance_probe_one(struct of_device *op,
lp->dev = dev; lp->dev = dev;
SET_NETDEV_DEV(dev, &op->dev); SET_NETDEV_DEV(dev, &op->dev);
dev->open = &lance_open;
dev->stop = &lance_close;
dev->hard_start_xmit = &lance_start_xmit;
dev->tx_timeout = &lance_tx_timeout;
dev->watchdog_timeo = 5*HZ; dev->watchdog_timeo = 5*HZ;
dev->set_multicast_list = &lance_set_multicast;
dev->ethtool_ops = &sparc_lance_ethtool_ops; dev->ethtool_ops = &sparc_lance_ethtool_ops;
dev->netdev_ops = &sparc_lance_ops;
dev->irq = op->irqs[0]; dev->irq = op->irqs[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment