diff options
author | Saeed Mahameed <saeedm@mellanox.com> | 2016-10-18 20:35:35 +0200 |
---|---|---|
committer | Leon Romanovsky <leon@kernel.org> | 2016-10-30 14:43:12 +0100 |
commit | 86490d9a5969eaa8217a9329a6f0875cd0b041bc (patch) | |
tree | fe7cf7541013b5d42734dbfbb65550857b0e1290 | |
parent | net/mlx5: Fix length of async_event_mask (diff) | |
download | linux-86490d9a5969eaa8217a9329a6f0875cd0b041bc.tar.xz linux-86490d9a5969eaa8217a9329a6f0875cd0b041bc.zip |
net/mlx5: Add ConnectX-5 PCIe 4.0 VF device ID
For the mlx5 driver to support ConnectX-5 PCIe 4.0 VFs, we add the
device ID "0x101a" to mlx5_core_pci_table.
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/main.c b/drivers/net/ethernet/mellanox/mlx5/core/main.c index d9c3c70b29e4..197e04c675fd 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -1422,6 +1422,7 @@ static const struct pci_device_id mlx5_core_pci_table[] = { { PCI_VDEVICE(MELLANOX, 0x1017) }, /* ConnectX-5, PCIe 3.0 */ { PCI_VDEVICE(MELLANOX, 0x1018), MLX5_PCI_DEV_IS_VF}, /* ConnectX-5 VF */ { PCI_VDEVICE(MELLANOX, 0x1019) }, /* ConnectX-5, PCIe 4.0 */ + { PCI_VDEVICE(MELLANOX, 0x101a), MLX5_PCI_DEV_IS_VF}, /* ConnectX-5, PCIe 4.0 VF */ { 0, } }; |