mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-04 16:49:17 +00:00
Staging: epl: convert to netdev_ops
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
3a32368273
commit
0e46ff33d4
@ -284,6 +284,17 @@ static tEplKernel VEthRecvFrame(tEplFrameInfo * pFrameInfo_p)
|
|||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct net_device_ops epl_netdev_ops = {
|
||||||
|
.ndo_open = VEthOpen,
|
||||||
|
.ndo_stop = VEthClose,
|
||||||
|
.ndo_get_stats = VEthGetStats,
|
||||||
|
.ndo_start_xmit = VEthXmit,
|
||||||
|
.ndo_tx_timeout = VEthTimeout,
|
||||||
|
.ndo_change_mtu = eth_change_mtu,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
};
|
||||||
|
|
||||||
tEplKernel VEthAddInstance(tEplDllkInitParam *pInitParam_p)
|
tEplKernel VEthAddInstance(tEplDllkInitParam *pInitParam_p)
|
||||||
{
|
{
|
||||||
tEplKernel Ret = kEplSuccessful;
|
tEplKernel Ret = kEplSuccessful;
|
||||||
@ -299,11 +310,7 @@ tEplKernel VEthAddInstance(tEplDllkInitParam *pInitParam_p)
|
|||||||
goto Exit;
|
goto Exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
pVEthNetDevice_g->open = VEthOpen;
|
pVEthNetDevice_g->netdev_ops = &epl_netdev_ops;
|
||||||
pVEthNetDevice_g->stop = VEthClose;
|
|
||||||
pVEthNetDevice_g->get_stats = VEthGetStats;
|
|
||||||
pVEthNetDevice_g->hard_start_xmit = VEthXmit;
|
|
||||||
pVEthNetDevice_g->tx_timeout = VEthTimeout;
|
|
||||||
pVEthNetDevice_g->watchdog_timeo = EPL_VETH_TX_TIMEOUT;
|
pVEthNetDevice_g->watchdog_timeo = EPL_VETH_TX_TIMEOUT;
|
||||||
pVEthNetDevice_g->destructor = free_netdev;
|
pVEthNetDevice_g->destructor = free_netdev;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user