mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 13:15:57 +00:00
bpqether: 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
f57505fd7c
commit
283767e705
@ -466,16 +466,17 @@ static const struct file_operations bpq_info_fops = {
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
||||
static const struct net_device_ops bpq_netdev_ops = {
|
||||
.ndo_open = bpq_open,
|
||||
.ndo_stop = bpq_close,
|
||||
.ndo_start_xmit = bpq_xmit,
|
||||
.ndo_set_mac_address = bpq_set_mac_address,
|
||||
.ndo_do_ioctl = bpq_ioctl,
|
||||
};
|
||||
|
||||
static void bpq_setup(struct net_device *dev)
|
||||
{
|
||||
|
||||
dev->hard_start_xmit = bpq_xmit;
|
||||
dev->open = bpq_open;
|
||||
dev->stop = bpq_close;
|
||||
dev->set_mac_address = bpq_set_mac_address;
|
||||
dev->get_stats = bpq_get_stats;
|
||||
dev->do_ioctl = bpq_ioctl;
|
||||
dev->netdev_ops = &bpq_netdev_ops;
|
||||
dev->destructor = free_netdev;
|
||||
|
||||
memcpy(dev->broadcast, &ax25_bcast, AX25_ADDR_LEN);
|
||||
|
Loading…
x
Reference in New Issue
Block a user