aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbevf/ixgbevf.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgbevf/ixgbevf.h')
-rw-r--r--drivers/net/ixgbevf/ixgbevf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf.h b/drivers/net/ixgbevf/ixgbevf.h
index f7015efbff05..b703f60be3b7 100644
--- a/drivers/net/ixgbevf/ixgbevf.h
+++ b/drivers/net/ixgbevf/ixgbevf.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel 82599 Virtual Function driver 3 Intel 82599 Virtual Function driver
4 Copyright(c) 1999 - 2009 Intel Corporation. 4 Copyright(c) 1999 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License, 7 under the terms and conditions of the GNU General Public License,
@@ -207,7 +207,6 @@ struct ixgbevf_adapter {
207 u64 hw_tso_ctxt; 207 u64 hw_tso_ctxt;
208 u64 hw_tso6_ctxt; 208 u64 hw_tso6_ctxt;
209 u32 tx_timeout_count; 209 u32 tx_timeout_count;
210 bool detect_tx_hung;
211 210
212 /* RX */ 211 /* RX */
213 struct ixgbevf_ring *rx_ring; /* One per active queue */ 212 struct ixgbevf_ring *rx_ring; /* One per active queue */
@@ -243,7 +242,6 @@ struct ixgbevf_adapter {
243 /* OS defined structs */ 242 /* OS defined structs */
244 struct net_device *netdev; 243 struct net_device *netdev;
245 struct pci_dev *pdev; 244 struct pci_dev *pdev;
246 struct net_device_stats net_stats;
247 245
248 /* structs defined in ixgbe_vf.h */ 246 /* structs defined in ixgbe_vf.h */
249 struct ixgbe_hw hw; 247 struct ixgbe_hw hw;
@@ -276,9 +274,11 @@ enum ixbgevf_state_t {
276 274
277enum ixgbevf_boards { 275enum ixgbevf_boards {
278 board_82599_vf, 276 board_82599_vf,
277 board_X540_vf,
279}; 278};
280 279
281extern struct ixgbevf_info ixgbevf_vf_info; 280extern struct ixgbevf_info ixgbevf_82599_vf_info;
281extern struct ixgbevf_info ixgbevf_X540_vf_info;
282extern struct ixgbe_mac_operations ixgbevf_mbx_ops; 282extern struct ixgbe_mac_operations ixgbevf_mbx_ops;
283 283
284/* needed by ethtool.c */ 284/* needed by ethtool.c */