mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
rionet: convert to net_device_ops
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1ec847f6d4
commit
a33a2bb3c9
1 changed files with 10 additions and 4 deletions
|
@ -428,6 +428,15 @@ static const struct ethtool_ops rionet_ethtool_ops = {
|
||||||
.get_link = ethtool_op_get_link,
|
.get_link = ethtool_op_get_link,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct net_device_ops rionet_netdev_ops = {
|
||||||
|
.ndo_open = rionet_open,
|
||||||
|
.ndo_stop = rionet_close,
|
||||||
|
.ndo_start_xmit = rionet_start_xmit,
|
||||||
|
.ndo_change_mtu = eth_change_mtu,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
};
|
||||||
|
|
||||||
static int rionet_setup_netdev(struct rio_mport *mport)
|
static int rionet_setup_netdev(struct rio_mport *mport)
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
@ -466,10 +475,7 @@ static int rionet_setup_netdev(struct rio_mport *mport)
|
||||||
ndev->dev_addr[4] = device_id >> 8;
|
ndev->dev_addr[4] = device_id >> 8;
|
||||||
ndev->dev_addr[5] = device_id & 0xff;
|
ndev->dev_addr[5] = device_id & 0xff;
|
||||||
|
|
||||||
/* Fill in the driver function table */
|
ndev->netdev_ops = &rionet_netdev_ops;
|
||||||
ndev->open = &rionet_open;
|
|
||||||
ndev->hard_start_xmit = &rionet_start_xmit;
|
|
||||||
ndev->stop = &rionet_close;
|
|
||||||
ndev->mtu = RIO_MAX_MSG_SIZE - 14;
|
ndev->mtu = RIO_MAX_MSG_SIZE - 14;
|
||||||
ndev->features = NETIF_F_LLTX;
|
ndev->features = NETIF_F_LLTX;
|
||||||
SET_ETHTOOL_OPS(ndev, &rionet_ethtool_ops);
|
SET_ETHTOOL_OPS(ndev, &rionet_ethtool_ops);
|
||||||
|
|
Loading…
Reference in a new issue