WIP: get PCI config base address from MCFG table (3)

This commit is contained in:
Antoine Cure 2020-02-10 09:18:25 +01:00
parent 5fc3e82a32
commit 8b8d17d93d
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ void pciGetDevice(ushort vendorID, ushort deviceID, int deviceType)
{
KernLog("Unable to access PCI configuration : MCFG table not reachable\n");
}
KernLog("PCI Config Base address = %ld", MCFG_table->PCIConfigBaseAddress);
KernLog("\nPCI Config Base address = 0x%lx\n", MCFG_table->PCIConfigBaseAddress);
}