diff --git a/drivers/misc/tegra-pcie-dma-test.c b/drivers/misc/tegra-pcie-dma-test.c index 7dea5be0..3bf21153 100644 --- a/drivers/misc/tegra-pcie-dma-test.c +++ b/drivers/misc/tegra-pcie-dma-test.c @@ -1,8 +1,8 @@ -// SPDX-License-Identifier: GPL-2.0+ +// SPDX-License-Identifier: GPL-2.0-only /* - * PCIe DMA test framework for Tegra PCIe + * PCIe DMA test framework for Tegra PCIe. * - * Copyright (C) 2021-2023 NVIDIA Corporation. All rights reserved. + * Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. */ #include @@ -291,8 +291,8 @@ static void ep_test_dma_remove(struct pci_dev *pdev) } static const struct pci_device_id ep_pci_tbl[] = { - { PCI_DEVICE(0x10DE, 0x229a)}, - { PCI_DEVICE(0x10DE, 0x229c)}, + { PCI_DEVICE(0x10DE, 0x1AD4)}, + { PCI_DEVICE(0x10DE, 0x1AD5)}, {}, }; diff --git a/drivers/pci/endpoint/functions/pci-epf-dma-test.c b/drivers/pci/endpoint/functions/pci-epf-dma-test.c index 477ace80..977d2bf4 100644 --- a/drivers/pci/endpoint/functions/pci-epf-dma-test.c +++ b/drivers/pci/endpoint/functions/pci-epf-dma-test.c @@ -1,8 +1,8 @@ -// SPDX-License-Identifier: GPL-2.0+ +// SPDX-License-Identifier: GPL-2.0-only /* - * PCIe DMA EPF test framework for Tegra PCIe + * PCIe DMA EPF test framework for Tegra PCIe. * - * Copyright (C) 2021-2024 NVIDIA Corporation. All rights reserved. + * Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. */ #include @@ -297,7 +297,7 @@ static int pcie_dma_epf_probe(struct pci_epf *epf) epf->event_ops = &pci_epf_dma_test_event_ops; epfnv->header.vendorid = PCI_VENDOR_ID_NVIDIA; - epfnv->header.deviceid = 0x1AD6; + epfnv->header.deviceid = 0x1AD4; epfnv->header.baseclass_code = PCI_BASE_CLASS_MEMORY; epfnv->header.interrupt_pin = PCI_INTERRUPT_INTA; epf->header = &epfnv->header;