IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks
Changes instances of Intel to Cornelis in identifying strings Link: https://lore.kernel.org/r/20211028124601.26694.35662.stgit@awfm-01.cornelisnetworks.com Signed-off-by: Scott Breyer <scott.breyer@cornelisnetworks.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
This commit is contained in:
parent
493620b1c9
commit
ddf65f28dd
|
@ -1,12 +1,12 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
config INFINIBAND_HFI1
|
||||
tristate "Intel OPA Gen1 support"
|
||||
tristate "Cornelis OPX Gen1 support"
|
||||
depends on X86_64 && INFINIBAND_RDMAVT && I2C
|
||||
select MMU_NOTIFIER
|
||||
select CRC32
|
||||
select I2C_ALGOBIT
|
||||
help
|
||||
This is a low-level driver for Intel OPA Gen1 adapter.
|
||||
This is a low-level driver for Cornelis OPX Gen1 adapter.
|
||||
config HFI1_DEBUG_SDMA_ORDER
|
||||
bool "HFI1 SDMA Order debug"
|
||||
depends on INFINIBAND_HFI1
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
// SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
|
||||
/*
|
||||
* Copyright(c) 2015 - 2020 Intel Corporation.
|
||||
* Copyright(c) 2021 Cornelis Networks.
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -14918,7 +14919,7 @@ static int obtain_boardname(struct hfi1_devdata *dd)
|
|||
{
|
||||
/* generic board description */
|
||||
const char generic[] =
|
||||
"Intel Omni-Path Host Fabric Interface Adapter 100 Series";
|
||||
"Cornelis Omni-Path Host Fabric Interface Adapter 100 Series";
|
||||
unsigned long size;
|
||||
int ret;
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
// SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
|
||||
/*
|
||||
* Copyright(c) 2015-2020 Intel Corporation.
|
||||
* Copyright(c) 2021 Cornelis Networks.
|
||||
*/
|
||||
|
||||
#include <linux/spinlock.h>
|
||||
|
@ -56,7 +57,7 @@ module_param_cb(cap_mask, &cap_ops, &hfi1_cap_mask, S_IWUSR | S_IRUGO);
|
|||
MODULE_PARM_DESC(cap_mask, "Bit mask of enabled/disabled HW features");
|
||||
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
MODULE_DESCRIPTION("Intel Omni-Path Architecture driver");
|
||||
MODULE_DESCRIPTION("Cornelis Omni-Path Express driver");
|
||||
|
||||
/*
|
||||
* MAX_PKT_RCV is the max # if packets processed per receive interrupt.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
// SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
|
||||
/*
|
||||
* Copyright(c) 2015 - 2020 Intel Corporation.
|
||||
* Copyright(c) 2021 Cornelis Networks.
|
||||
*/
|
||||
|
||||
#include <linux/pci.h>
|
||||
|
@ -1342,7 +1343,7 @@ static void remove_one(struct pci_dev *);
|
|||
static int init_one(struct pci_dev *, const struct pci_device_id *);
|
||||
static void shutdown_one(struct pci_dev *);
|
||||
|
||||
#define DRIVER_LOAD_MSG "Intel " DRIVER_NAME " loaded: "
|
||||
#define DRIVER_LOAD_MSG "Cornelis " DRIVER_NAME " loaded: "
|
||||
#define PFX DRIVER_NAME ": "
|
||||
|
||||
const struct pci_device_id hfi1_pci_tbl[] = {
|
||||
|
|
Loading…
Reference in New Issue