From 1cfccd4b07dd1cf38290d930e2b687c031589db3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= Date: Thu, 20 Oct 2022 16:37:15 +0200 Subject: [PATCH] test/vpci: fix vPCI test harness to provide pci_get_pdev() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Instead of pci_get_pdev_by_domain(), which is no longer present in the hypervisor. While there add parentheses around the define value. Fixes: a37f9ea7a6 ('PCI: fold pci_get_pdev{,_by_domain}()') Signed-off-by: Roger Pau Monné Acked-by: Anthony PERARD Release-acked-by: Henry Wang --- tools/tests/vpci/emul.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tests/vpci/emul.h b/tools/tests/vpci/emul.h index 386b15eb86..f03e3a56d1 100644 --- a/tools/tests/vpci/emul.h +++ b/tools/tests/vpci/emul.h @@ -92,7 +92,7 @@ typedef union { #define xmalloc(type) ((type *)malloc(sizeof(type))) #define xfree(p) free(p) -#define pci_get_pdev_by_domain(...) &test_pdev +#define pci_get_pdev(...) (&test_pdev) #define pci_get_ro_map(...) NULL #define test_bit(...) false -- 2.39.5