mirror of https://gitee.com/openkylin/linux.git
netdev: ibmlana convert to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
462540bdb2
commit
d9c6d50d8d
|
@ -905,6 +905,17 @@ static char *ibmlana_adapter_names[] __devinitdata = {
|
|||
NULL
|
||||
};
|
||||
|
||||
|
||||
static const struct net_device_ops ibmlana_netdev_ops = {
|
||||
.ndo_open = ibmlana_open,
|
||||
.ndo_stop = ibmlana_close,
|
||||
.ndo_start_xmit = ibmlana_tx,
|
||||
.ndo_set_multicast_list = ibmlana_set_multicast_list,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
};
|
||||
|
||||
static int __devinit ibmlana_init_one(struct device *kdev)
|
||||
{
|
||||
struct mca_device *mdev = to_mca_device(kdev);
|
||||
|
@ -973,11 +984,7 @@ static int __devinit ibmlana_init_one(struct device *kdev)
|
|||
mca_device_set_claim(mdev, 1);
|
||||
|
||||
/* set methods */
|
||||
|
||||
dev->open = ibmlana_open;
|
||||
dev->stop = ibmlana_close;
|
||||
dev->hard_start_xmit = ibmlana_tx;
|
||||
dev->set_multicast_list = ibmlana_set_multicast_list;
|
||||
dev->netdev_ops = &ibmlana_netdev_ops;
|
||||
dev->flags |= IFF_MULTICAST;
|
||||
|
||||
/* copy out MAC address */
|
||||
|
|
Loading…
Reference in New Issue