diff options
author | Jesse Brandeburg <jesse.brandeburg@intel.com> | 2014-05-10 00:49:14 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2014-06-08 05:02:02 -0400 |
commit | 704599ed0fa28bc5b1f9478315ba076ec6f66192 (patch) | |
tree | adbc918ffdfe5524ad0f140465be3fff104d93d8 | |
parent | eefeacee77ecae81a7fb0dd6d710321479c48cee (diff) |
i40e/i40evf: remove deprecated device IDs
Remove two device IDs 1582 and 1573, because they will not be shipped.
Change-ID: Ica2e550b5b21a69e3f353eba2fe5e1c532a548c4
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_common.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_main.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_type.h | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/intel/i40evf/i40e_common.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/intel/i40evf/i40e_type.h | 4 |
5 files changed, 1 insertions, 11 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_common.c b/drivers/net/ethernet/intel/i40e/i40e_common.c index 8bfb445d00ec..8e4b33c3e3cd 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_common.c +++ b/drivers/net/ethernet/intel/i40e/i40e_common.c | |||
@@ -43,12 +43,10 @@ static i40e_status i40e_set_mac_type(struct i40e_hw *hw) | |||
43 | if (hw->vendor_id == PCI_VENDOR_ID_INTEL) { | 43 | if (hw->vendor_id == PCI_VENDOR_ID_INTEL) { |
44 | switch (hw->device_id) { | 44 | switch (hw->device_id) { |
45 | case I40E_DEV_ID_SFP_XL710: | 45 | case I40E_DEV_ID_SFP_XL710: |
46 | case I40E_DEV_ID_SFP_X710: | ||
47 | case I40E_DEV_ID_QEMU: | 46 | case I40E_DEV_ID_QEMU: |
48 | case I40E_DEV_ID_KX_A: | 47 | case I40E_DEV_ID_KX_A: |
49 | case I40E_DEV_ID_KX_B: | 48 | case I40E_DEV_ID_KX_B: |
50 | case I40E_DEV_ID_KX_C: | 49 | case I40E_DEV_ID_KX_C: |
51 | case I40E_DEV_ID_KX_D: | ||
52 | case I40E_DEV_ID_QSFP_A: | 50 | case I40E_DEV_ID_QSFP_A: |
53 | case I40E_DEV_ID_QSFP_B: | 51 | case I40E_DEV_ID_QSFP_B: |
54 | case I40E_DEV_ID_QSFP_C: | 52 | case I40E_DEV_ID_QSFP_C: |
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index 254bb685eb45..8fc554d058ad 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c | |||
@@ -67,12 +67,10 @@ static int i40e_veb_get_bw_info(struct i40e_veb *veb); | |||
67 | */ | 67 | */ |
68 | static DEFINE_PCI_DEVICE_TABLE(i40e_pci_tbl) = { | 68 | static DEFINE_PCI_DEVICE_TABLE(i40e_pci_tbl) = { |
69 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0}, | 69 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0}, |
70 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X710), 0}, | ||
71 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0}, | 70 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0}, |
72 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0}, | 71 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0}, |
73 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0}, | 72 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0}, |
74 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0}, | 73 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0}, |
75 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_D), 0}, | ||
76 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0}, | 74 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0}, |
77 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0}, | 75 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0}, |
78 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0}, | 76 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0}, |
diff --git a/drivers/net/ethernet/intel/i40e/i40e_type.h b/drivers/net/ethernet/intel/i40e/i40e_type.h index 7fbbab46fe27..6c977d2d48e4 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_type.h +++ b/drivers/net/ethernet/intel/i40e/i40e_type.h | |||
@@ -36,12 +36,10 @@ | |||
36 | 36 | ||
37 | /* Device IDs */ | 37 | /* Device IDs */ |
38 | #define I40E_DEV_ID_SFP_XL710 0x1572 | 38 | #define I40E_DEV_ID_SFP_XL710 0x1572 |
39 | #define I40E_DEV_ID_SFP_X710 0x1573 | ||
40 | #define I40E_DEV_ID_QEMU 0x1574 | 39 | #define I40E_DEV_ID_QEMU 0x1574 |
41 | #define I40E_DEV_ID_KX_A 0x157F | 40 | #define I40E_DEV_ID_KX_A 0x157F |
42 | #define I40E_DEV_ID_KX_B 0x1580 | 41 | #define I40E_DEV_ID_KX_B 0x1580 |
43 | #define I40E_DEV_ID_KX_C 0x1581 | 42 | #define I40E_DEV_ID_KX_C 0x1581 |
44 | #define I40E_DEV_ID_KX_D 0x1582 | ||
45 | #define I40E_DEV_ID_QSFP_A 0x1583 | 43 | #define I40E_DEV_ID_QSFP_A 0x1583 |
46 | #define I40E_DEV_ID_QSFP_B 0x1584 | 44 | #define I40E_DEV_ID_QSFP_B 0x1584 |
47 | #define I40E_DEV_ID_QSFP_C 0x1585 | 45 | #define I40E_DEV_ID_QSFP_C 0x1585 |
diff --git a/drivers/net/ethernet/intel/i40evf/i40e_common.c b/drivers/net/ethernet/intel/i40evf/i40e_common.c index ea0f2001cc20..a43155afdbe2 100644 --- a/drivers/net/ethernet/intel/i40evf/i40e_common.c +++ b/drivers/net/ethernet/intel/i40evf/i40e_common.c | |||
@@ -43,12 +43,10 @@ i40e_status i40e_set_mac_type(struct i40e_hw *hw) | |||
43 | if (hw->vendor_id == PCI_VENDOR_ID_INTEL) { | 43 | if (hw->vendor_id == PCI_VENDOR_ID_INTEL) { |
44 | switch (hw->device_id) { | 44 | switch (hw->device_id) { |
45 | case I40E_DEV_ID_SFP_XL710: | 45 | case I40E_DEV_ID_SFP_XL710: |
46 | case I40E_DEV_ID_SFP_X710: | ||
47 | case I40E_DEV_ID_QEMU: | 46 | case I40E_DEV_ID_QEMU: |
48 | case I40E_DEV_ID_KX_A: | 47 | case I40E_DEV_ID_KX_A: |
49 | case I40E_DEV_ID_KX_B: | 48 | case I40E_DEV_ID_KX_B: |
50 | case I40E_DEV_ID_KX_C: | 49 | case I40E_DEV_ID_KX_C: |
51 | case I40E_DEV_ID_KX_D: | ||
52 | case I40E_DEV_ID_QSFP_A: | 50 | case I40E_DEV_ID_QSFP_A: |
53 | case I40E_DEV_ID_QSFP_B: | 51 | case I40E_DEV_ID_QSFP_B: |
54 | case I40E_DEV_ID_QSFP_C: | 52 | case I40E_DEV_ID_QSFP_C: |
diff --git a/drivers/net/ethernet/intel/i40evf/i40e_type.h b/drivers/net/ethernet/intel/i40evf/i40e_type.h index 9c901fdaf7cd..e3c9ebbe7ca2 100644 --- a/drivers/net/ethernet/intel/i40evf/i40e_type.h +++ b/drivers/net/ethernet/intel/i40evf/i40e_type.h | |||
@@ -35,13 +35,11 @@ | |||
35 | #include "i40e_lan_hmc.h" | 35 | #include "i40e_lan_hmc.h" |
36 | 36 | ||
37 | /* Device IDs */ | 37 | /* Device IDs */ |
38 | #define I40E_DEV_ID_SFP_XL710 0x1572 | 38 | #define I40E_DEV_ID_SFP_XL710 0x1572 |
39 | #define I40E_DEV_ID_SFP_X710 0x1573 | ||
40 | #define I40E_DEV_ID_QEMU 0x1574 | 39 | #define I40E_DEV_ID_QEMU 0x1574 |
41 | #define I40E_DEV_ID_KX_A 0x157F | 40 | #define I40E_DEV_ID_KX_A 0x157F |
42 | #define I40E_DEV_ID_KX_B 0x1580 | 41 | #define I40E_DEV_ID_KX_B 0x1580 |
43 | #define I40E_DEV_ID_KX_C 0x1581 | 42 | #define I40E_DEV_ID_KX_C 0x1581 |
44 | #define I40E_DEV_ID_KX_D 0x1582 | ||
45 | #define I40E_DEV_ID_QSFP_A 0x1583 | 43 | #define I40E_DEV_ID_QSFP_A 0x1583 |
46 | #define I40E_DEV_ID_QSFP_B 0x1584 | 44 | #define I40E_DEV_ID_QSFP_B 0x1584 |
47 | #define I40E_DEV_ID_QSFP_C 0x1585 | 45 | #define I40E_DEV_ID_QSFP_C 0x1585 |