Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 135430
b: refs/heads/master
c: 1964e0d
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Mar 22, 2009
1 parent 89cb126 commit 02fd33a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 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: f56ef16eb0c30bf76acf7c2ac9ee68781a7aef6a
refs/heads/master: 1964e0dedf98e2fdf3bfd3ac8cf02d9e9aa803fb
19 changes: 13 additions & 6 deletions trunk/drivers/net/wireless/netwave_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,17 @@ static struct iw_statistics *netwave_get_wireless_stats(struct net_device *dev)
return &priv->iw_stats;
}

static const struct net_device_ops netwave_netdev_ops = {
.ndo_open = netwave_open,
.ndo_stop = netwave_close,
.ndo_start_xmit = netwave_start_xmit,
.ndo_set_multicast_list = set_multicast_list,
.ndo_tx_timeout = netwave_watchdog,
.ndo_change_mtu = eth_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr,
};

/*
* Function netwave_attach (void)
*
Expand Down Expand Up @@ -403,16 +414,12 @@ static int netwave_probe(struct pcmcia_device *link)
spin_lock_init(&priv->spinlock);

/* Netwave specific entries in the device structure */
dev->hard_start_xmit = &netwave_start_xmit;
dev->set_multicast_list = &set_multicast_list;
dev->netdev_ops = &netwave_netdev_ops;
/* wireless extensions */
dev->wireless_handlers = (struct iw_handler_def *)&netwave_handler_def;
dev->wireless_handlers = &netwave_handler_def;

dev->tx_timeout = &netwave_watchdog;
dev->watchdog_timeo = TX_TIMEOUT;

dev->open = &netwave_open;
dev->stop = &netwave_close;
link->irq.Instance = dev;

return netwave_pcmcia_config( link);
Expand Down

0 comments on commit 02fd33a

Please sign in to comment.