git: 104ee24349c0 - main - pci: Renove #ifdef PCI_IOV from declarations now used unconditionally
Date: Thu, 08 Aug 2024 22:36:57 UTC
The branch main has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=104ee24349c033b63a50bd89ddc431a0d3ef9902
commit 104ee24349c033b63a50bd89ddc431a0d3ef9902
Author: Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2024-08-08 22:35:09 +0000
Commit: Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2024-08-08 22:35:09 +0000
pci: Renove #ifdef PCI_IOV from declarations now used unconditionally
Fixes: 971c9f57d7e6 ("pci: Narrow the scope of recently-added PCI_IOV #ifdefs")
---
sys/dev/pci/pci_private.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys/dev/pci/pci_private.h b/sys/dev/pci/pci_private.h
index 3a114734c06f..3577c04d7043 100644
--- a/sys/dev/pci/pci_private.h
+++ b/sys/dev/pci/pci_private.h
@@ -63,16 +63,12 @@ bus_get_dma_tag_t pci_get_dma_tag;
bus_get_resource_list_t pci_get_resource_list;
bus_delete_resource_t pci_delete_resource;
bus_alloc_resource_t pci_alloc_resource;
-#ifdef PCI_IOV
bus_adjust_resource_t pci_adjust_resource;
-#endif
bus_release_resource_t pci_release_resource;
bus_activate_resource_t pci_activate_resource;
bus_deactivate_resource_t pci_deactivate_resource;
-#ifdef PCI_IOV
bus_map_resource_t pci_map_resource;
bus_unmap_resource_t pci_unmap_resource;
-#endif
bus_child_deleted_t pci_child_deleted;
bus_child_detached_t pci_child_detached;
bus_child_pnpinfo_t pci_child_pnpinfo_method;