From c2149433408f012c2ef7c7783bd6b3ced3824ce7 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Tue, 11 Feb 2020 16:25:54 +0100 Subject: [PATCH] misc cleanup --- kaleid/kernel/io/pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kaleid/kernel/io/pci.c b/kaleid/kernel/io/pci.c index ba51bab..f91b160 100644 --- a/kaleid/kernel/io/pci.c +++ b/kaleid/kernel/io/pci.c @@ -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); }