From c7ac599207d81e5212e5ecdde72ca0b8ed0b2ec2 Mon Sep 17 00:00:00 2001 From: Srishti Goel Date: Thu, 2 Jan 2025 03:26:20 +0000 Subject: [PATCH] misc: Corrected PCIe DMA test app deviceid Corrected DMA test app deviceid to 0x22D7 and 0x229B Bug 4938994 Change-Id: I080e7b452e8e3928d87c762855926f11c985e76c Signed-off-by: Srishti Goel Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3275918 Reviewed-by: svcacv Reviewed-by: Manikanta Maddireddy GVS: buildbot_gerritrpt Reviewed-by: Bitan Biswas --- drivers/misc/tegra-pcie-dma-test.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/misc/tegra-pcie-dma-test.c b/drivers/misc/tegra-pcie-dma-test.c index f3675b8a..9edd67c3 100644 --- a/drivers/misc/tegra-pcie-dma-test.c +++ b/drivers/misc/tegra-pcie-dma-test.c @@ -1,8 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-only +// SPDX-FileCopyrightText: Copyright (c) 2021-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. /* * PCIe DMA test framework for Tegra PCIe. - * - * Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. */ #include @@ -366,9 +365,8 @@ static void ep_test_dma_remove(struct pci_dev *pdev) } static const struct pci_device_id ep_pci_tbl[] = { - { PCI_DEVICE(0x10DE, 0x1AD4)}, - { PCI_DEVICE(0x10DE, 0x1AD5)}, - { PCI_DEVICE(0x10DE, 0x229a)}, + { PCI_DEVICE(0x10DE, 0x22D7)}, + { PCI_DEVICE(0x10DE, 0x229B)}, {}, };