Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121954
b: refs/heads/master
c: aa18e9e
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Nov 21, 2008
1 parent dbf8879 commit be8fcff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 008298231abbeb91bc7be9e8b078607b816d1a4a
refs/heads/master: aa18e9e88c863a58f6ea63eeee0e740be071fdcf
15 changes: 10 additions & 5 deletions trunk/drivers/net/dummy.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,23 @@ static void set_multicast_list(struct net_device *dev)
{
}

static const struct net_device_ops dummy_netdev_ops = {
.ndo_start_xmit = dummy_xmit,
.ndo_validate_addr = eth_validate_addr,
.ndo_set_multicast_list = set_multicast_list,
.ndo_set_mac_address = dummy_set_address,
};

static void dummy_setup(struct net_device *dev)
{
ether_setup(dev);

/* Initialize the device structure. */
dev->hard_start_xmit = dummy_xmit;
dev->set_multicast_list = set_multicast_list;
dev->set_mac_address = dummy_set_address;
dev->netdev_ops = &dummy_netdev_ops;
dev->destructor = free_netdev;

/* Fill in device structure with ethernet-generic values. */
ether_setup(dev);
dev->tx_queue_len = 0;
dev->change_mtu = NULL;
dev->flags |= IFF_NOARP;
dev->flags &= ~IFF_MULTICAST;
random_ether_addr(dev->dev_addr);
Expand Down

0 comments on commit be8fcff

Please sign in to comment.