Skip to content

Commit

Permalink
rose: convert to network_device_ops
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Hemminger <[email protected]>
Acked-by: Ralf Baechle <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Stephen Hemminger authored and davem330 committed Jan 21, 2009
1 parent d289d12 commit 3170c65
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions net/rose/rose_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,18 +149,22 @@ static const struct header_ops rose_header_ops = {
.rebuild= rose_rebuild_header,
};

static const struct net_device_ops rose_netdev_ops = {
.ndo_open = rose_open,
.ndo_stop = rose_close,
.ndo_start_xmit = rose_xmit,
.ndo_set_mac_address = rose_set_mac_address,
};

void rose_setup(struct net_device *dev)
{
dev->mtu = ROSE_MAX_PACKET_SIZE - 2;
dev->hard_start_xmit = rose_xmit;
dev->open = rose_open;
dev->stop = rose_close;
dev->netdev_ops = &rose_netdev_ops;

dev->header_ops = &rose_header_ops;
dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN;
dev->addr_len = ROSE_ADDR_LEN;
dev->type = ARPHRD_ROSE;
dev->set_mac_address = rose_set_mac_address;

/* New-style flags. */
dev->flags = IFF_NOARP;
Expand Down

0 comments on commit 3170c65

Please sign in to comment.