From 0fcebb18e318cb0af02afa055f4357ba3002280b Mon Sep 17 00:00:00 2001 From: Lang Cheng Date: Fri, 9 Oct 2020 11:14:39 +0800 Subject: libhns: Add RoH device IDs Add RoH device IDs. 0xA227 is a 100Gb/s RoH device, and it was mistakenly added before. 0xA22C is a 200Gb/s RoH device. 0xA22D is a 400Gb/s RoH device. Fixes:a0f8a069799e("libhns: Add new PCI device matching for hip08") Signed-off-by: Lang Cheng --- providers/hns/hns_roce_u.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/providers/hns/hns_roce_u.c b/providers/hns/hns_roce_u.c index 266e73e..60b3fe1 100644 --- a/providers/hns/hns_roce_u.c +++ b/providers/hns/hns_roce_u.c @@ -53,6 +53,8 @@ static const struct verbs_match_ent hca_table[] = { VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA226, &hns_roce_u_hw_v2), VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA227, &hns_roce_u_hw_v2), VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA228, &hns_roce_u_hw_v2), + VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA22C, &hns_roce_u_hw_v2), + VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA22D, &hns_roce_u_hw_v2), VERBS_PCI_MATCH(PCI_VENDOR_ID_HUAWEI, 0xA22F, &hns_roce_u_hw_v2), {} }; -- 2.30.0