summaryrefslogtreecommitdiffstats
path: root/drivers/pci/endpoint
diff options
context:
space:
mode:
authorLi Chen <lchen@ambarella.com>2022-01-21 15:48:23 +0800
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>2022-03-07 11:42:12 +0000
commitbf8d87c076f55b8b4dfdb6bc6c6b6dc0c2ccb487 (patch)
treedfaea9a5a43bbf6f017371f55c9eb0ed562fba12 /drivers/pci/endpoint
parent829cc0e2ea2d61fb6c54bc3f8a17f86c56e11864 (diff)
downloadlinux-bf8d87c076f55b8b4dfdb6bc6c6b6dc0c2ccb487.tar.bz2
PCI: endpoint: Fix misused goto label
Fix a misused goto label jump since that can result in a memory leak. Link: https://lore.kernel.org/r/17e7b9b9ee6.c6d9c6a02564.4545388417402742326@zohomail.com Signed-off-by: Li Chen <lchen@ambarella.com> Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/pci/endpoint')
-rw-r--r--drivers/pci/endpoint/functions/pci-epf-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/endpoint/functions/pci-epf-test.c b/drivers/pci/endpoint/functions/pci-epf-test.c
index c7e45633beaf..5b833f00e980 100644
--- a/drivers/pci/endpoint/functions/pci-epf-test.c
+++ b/drivers/pci/endpoint/functions/pci-epf-test.c
@@ -451,7 +451,7 @@ static int pci_epf_test_write(struct pci_epf_test *epf_test)
if (!epf_test->dma_supported) {
dev_err(dev, "Cannot transfer data using DMA\n");
ret = -EINVAL;
- goto err_map_addr;
+ goto err_dma_map;
}
src_phys_addr = dma_map_single(dma_dev, buf, reg->size,