diff options
author | Jay Lubomirski <jlubomir@cisco.com> | 2019-03-12 16:44:00 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-03-13 11:55:38 +0000 |
commit | 69becfcd5eaab90c99b63ca7f3de7ccad9fffc0a (patch) | |
tree | 45ef214bca7017169775be6b1a0fce24e1e1750a /src | |
parent | 22364e49cb055086f0208fc08cb76ada54984f13 (diff) |
Add the SRIOV variant PCI Device ID of the Cisco VIC
Change-Id: I572cbba817275d85c200a4b09a63f4650075f638
Signed-off-by: Jay Lubomirski <jlubomir@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/dpdk/device/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 48869fcb6ff..09996412b2f 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -842,7 +842,8 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3)) ; /* Cisco VIC */ - else if (d->vendor_id == 0x1137 && d->device_id == 0x0043) + else if (d->vendor_id == 0x1137 && + (d->device_id == 0x0043 || d->device_id == 0x0071)) ; /* Chelsio T4/T5 */ else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000) |