diff options
Diffstat (limited to 'src/fw/pciinit.c')
-rw-r--r-- | src/fw/pciinit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fw/pciinit.c b/src/fw/pciinit.c index d25931bb..0aaf626e 100644 --- a/src/fw/pciinit.c +++ b/src/fw/pciinit.c @@ -1164,6 +1164,12 @@ pci_setup(void) pcimem_start = RamSize; pci_bios_init_platform(); + pci_setup_alloc(); +} + +void +pci_setup_alloc(void) +{ dprintf(1, "=== PCI new allocation pass #1 ===\n"); struct pci_bus *busses = malloc_tmp(sizeof(*busses) * (MaxPCIBus + 1)); if (!busses) { |