summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/intersil/orinoco/orinoco.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2017-02-10 14:03:13 +0100
committerKalle Valo <kvalo@codeaurora.org>2017-02-15 11:13:04 +0200
commit3a6282045b228f6de6abced74b793c71178fb948 (patch)
tree75b3de4af82e02f90659040bbdb7d2287c99d596 /drivers/net/wireless/intersil/orinoco/orinoco.h
parent7546bba385b4eb746fcb2ea972abe96efb44edb8 (diff)
orinoco: Use net_device_stats from struct net_device
Instead of using a private copy of struct net_device_stats in struct orinoco_private, use stats from struct net_device. Also remove the now unnecessary .ndo_get_stats function. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/intersil/orinoco/orinoco.h')
-rw-r--r--drivers/net/wireless/intersil/orinoco/orinoco.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/intersil/orinoco/orinoco.h b/drivers/net/wireless/intersil/orinoco/orinoco.h
index 5fa1c3e3713f..430862a6a24b 100644
--- a/drivers/net/wireless/intersil/orinoco/orinoco.h
+++ b/drivers/net/wireless/intersil/orinoco/orinoco.h
@@ -84,7 +84,6 @@ struct orinoco_private {
/* Net device stuff */
struct net_device *ndev;
- struct net_device_stats stats;
struct iw_statistics wstats;
/* Hardware control variables */
@@ -206,7 +205,6 @@ int orinoco_process_xmit_skb(struct sk_buff *skb,
/* Common ndo functions exported for reuse by orinoco_usb */
int orinoco_open(struct net_device *dev);
int orinoco_stop(struct net_device *dev);
-struct net_device_stats *orinoco_get_stats(struct net_device *dev);
void orinoco_set_multicast_list(struct net_device *dev);
int orinoco_change_mtu(struct net_device *dev, int new_mtu);
void orinoco_tx_timeout(struct net_device *dev);