1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

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

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);
}