diff options
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/pci_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/pci_device.c b/src/device/pci_device.c index 21b43529d7..b356c2695b 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -578,7 +578,7 @@ void pci_domain_read_resources(struct device *dev) /* Initialize 64-bit memory resource constraints above 4G. */ res = new_resource(dev, IOINDEX_SUBTRACTIVE(2, 0)); res->base = 4ULL * GiB; - res->limit = (1ULL << cpu_phys_address_size()) - 1; + res->limit = (1ULL << soc_phys_address_size()) - 1; res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED; } |