The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=66d37dbedfbf2dc94ccf49e6983c3652d5909b91

commit 66d37dbedfbf2dc94ccf49e6983c3652d5909b91
Author:     John Baldwin <[email protected]>
AuthorDate: 2024-02-16 20:09:46 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2024-02-16 20:09:46 +0000

    pci_host_generic: Fix build without PCI_RES_BUS
    
    Fixes:          d79b6b8ec267 pci_host_generic: Don't rewrite resource start 
address for translation
---
 sys/dev/pci/pci_host_generic.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sys/dev/pci/pci_host_generic.c b/sys/dev/pci/pci_host_generic.c
index 386b8411d29a..520462972a66 100644
--- a/sys/dev/pci/pci_host_generic.c
+++ b/sys/dev/pci/pci_host_generic.c
@@ -537,10 +537,14 @@ struct resource *
 pci_host_generic_core_alloc_resource(device_t dev, device_t child, int type,
     int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
 {
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
        struct generic_pcie_core_softc *sc;
+#endif
        struct resource *res;
 
+#if defined(NEW_PCIB) && defined(PCI_RES_BUS)
        sc = device_get_softc(dev);
+#endif
 
        switch (type) {
 #if defined(NEW_PCIB) && defined(PCI_RES_BUS)

Reply via email to