git: 1b0dd6b64b8e - stable/14 - pci_host_generic: Fix build without PCI_RES_BUS

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Thu, 27 Feb 2025 14:17:04 UTC
The branch stable/14 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=1b0dd6b64b8e0d75362d70e1e68c2e55f90acffc

commit 1b0dd6b64b8e0d75362d70e1e68c2e55f90acffc
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2024-02-16 20:09:46 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-02-27 13:09:22 +0000

    pci_host_generic: Fix build without PCI_RES_BUS
    
    Fixes:          d79b6b8ec267 pci_host_generic: Don't rewrite resource start address for translation
    (cherry picked from commit 66d37dbedfbf2dc94ccf49e6983c3652d5909b91)
---
 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)