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

misc cleanup

This commit is contained in:
Adrien Bourmault 2020-02-11 16:25:54 +01:00
parent 0f62dbb43b
commit c214943340
No known key found for this signature in database
GPG Key ID: AFEE5788AEE3F4EC

View File

@ -32,7 +32,7 @@ void pciGetDevice(ushort vendorID, ushort deviceID, int deviceType)
struct SDT_MCFG_t *MCFG_table = (struct SDT_MCFG_t*)IoGetAcpiTable(SDT_MCFG);
if(MCFG_table == NULL)
{
KernLog("Unable to access PCI configuration : MCFG table not reachable\n");
DebugLog("Unable to access PCI configuration : MCFG table not reachable\n");
}
KernLog("\nPCI Config Base address = 0x%lx\n", MCFG_table->PCIConfigBaseAddress);
DebugLog("PCI Config Base address = 0x%lx\n", MCFG_table->PCIConfigBaseAddress);
}