diff options
Diffstat (limited to 'src/devices/device.c')
-rw-r--r-- | src/devices/device.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/device.c b/src/devices/device.c index e6fc99463d..804665968f 100644 --- a/src/devices/device.c +++ b/src/devices/device.c @@ -366,6 +366,12 @@ void compute_allocate_resource( (resource->flags & IORESOURCE_IO)? "io": (resource->flags & IORESOURCE_PREFETCH)? "prefmem": "mem"); } +#if CONFIG_PCIE_CONFIGSPACE_HOLE +#warning Handle PCIe hole differently... + if (base >= 0xf0000000 && base < 0xf4000000) { + base = 0xf4000000; + } +#endif } /* A pci bridge resource does not need to be a power * of two size, but it does have a minimum granularity. |