OSDN Git Service

RDMA/efa: Add EFA 0xefa2 PCI ID
authorMichael Margolin <mrgolin@amazon.com>
Thu, 20 Oct 2022 15:19:49 +0000 (18:19 +0300)
committerLeon Romanovsky <leon@kernel.org>
Mon, 24 Oct 2022 11:11:58 +0000 (14:11 +0300)
Add support for 0xefa2 devices.

Reviewed-by: Firas Jahjah <firasj@amazon.com>
Reviewed-by: Yossi Leybovich <sleybo@amazon.com>
Signed-off-by: Michael Margolin <mrgolin@amazon.com>
Link: https://lore.kernel.org/r/20221020151949.1768-1-mrgolin@amazon.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/efa/efa_main.c

index 94b94cc..15ee920 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
 /*
- * Copyright 2018-2021 Amazon.com, Inc. or its affiliates. All rights reserved.
+ * Copyright 2018-2022 Amazon.com, Inc. or its affiliates. All rights reserved.
  */
 
 #include <linux/module.h>
 
 #define PCI_DEV_ID_EFA0_VF 0xefa0
 #define PCI_DEV_ID_EFA1_VF 0xefa1
+#define PCI_DEV_ID_EFA2_VF 0xefa2
 
 static const struct pci_device_id efa_pci_tbl[] = {
        { PCI_VDEVICE(AMAZON, PCI_DEV_ID_EFA0_VF) },
        { PCI_VDEVICE(AMAZON, PCI_DEV_ID_EFA1_VF) },
+       { PCI_VDEVICE(AMAZON, PCI_DEV_ID_EFA2_VF) },
        { }
 };