aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igbvf/vf.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/igbvf/vf.h')
-rw-r--r--drivers/net/igbvf/vf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/igbvf/vf.h b/drivers/net/igbvf/vf.h
index 1e8ce3741a67..d7ed58fcd9bb 100644
--- a/drivers/net/igbvf/vf.h
+++ b/drivers/net/igbvf/vf.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 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,
@@ -39,6 +39,7 @@
39struct e1000_hw; 39struct e1000_hw;
40 40
41#define E1000_DEV_ID_82576_VF 0x10CA 41#define E1000_DEV_ID_82576_VF 0x10CA
42#define E1000_DEV_ID_I350_VF 0x1520
42#define E1000_REVISION_0 0 43#define E1000_REVISION_0 0
43#define E1000_REVISION_1 1 44#define E1000_REVISION_1 1
44#define E1000_REVISION_2 2 45#define E1000_REVISION_2 2
@@ -133,6 +134,7 @@ struct e1000_adv_tx_context_desc {
133enum e1000_mac_type { 134enum e1000_mac_type {
134 e1000_undefined = 0, 135 e1000_undefined = 0,
135 e1000_vfadapt, 136 e1000_vfadapt,
137 e1000_vfadapt_i350,
136 e1000_num_macs /* List is 1-based, so subtract 1 for true count. */ 138 e1000_num_macs /* List is 1-based, so subtract 1 for true count. */
137}; 139};
138 140